18 lines
313 B
Ruby
18 lines
313 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.feature "Contests", type: :feature do
|
|
context "visiting the home page" do
|
|
let!(:user) { create(:user) }
|
|
|
|
before do
|
|
login(user)
|
|
end
|
|
|
|
it "should display the username" do
|
|
visit root_path
|
|
|
|
expect(page).to have_content(user.username)
|
|
end
|
|
end
|
|
end
|