homepage_steps.rb
282 Bytes
Given(/^I am at the homepage$/) do
visit root_path
end
Given(/^I am signed in$/) do
login_as(@user, :scope => :user)
end
Given(/^I am a regular user$/) do
@user = FactoryGirl.create(:user)
end
Then(/^I should see "(.+)"$/) do |text|
expect(page).to have_content(text)
end