2017-07-06 15:07:05 +08:00
|
|
|
Given(/^the following users are registered$/) do |table|
|
|
|
|
table.hashes.each do |hash|
|
|
|
|
FactoryGirl.create(:user, hash)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Given(/^I visit the sign up page$/) do
|
|
|
|
visit new_user_registration_path
|
|
|
|
end
|
|
|
|
|
|
|
|
Then(/^I fill the sign up form with$/) do |table|
|
|
|
|
table.hashes.each do |hash|
|
|
|
|
hash.each do |k, v|
|
|
|
|
fill_in k, with: v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-10-10 15:17:55 +08:00
|
|
|
|
|
|
|
Given(/^is signed in with "([^"]*)", "([^"]*)"$/) do |email, password|
|
|
|
|
visit '/users/sign_in'
|
2017-10-11 15:51:20 +08:00
|
|
|
fill_in 'user_email', with: email
|
|
|
|
fill_in 'user_password', with: password
|
|
|
|
click_button 'Log in'
|
2017-10-10 15:17:55 +08:00
|
|
|
@current_user = User.find_by_email(email)
|
|
|
|
end
|