foodsoft/spec/support/session_helper.rb

16 lines
315 B
Ruby
Raw Normal View History

2013-07-24 01:05:01 +02:00
module SessionHelper
def login(nick=nil, password=nil)
visit login_path
if nick.nil?
user = FactoryGirl.create :user
nick, password = user.nick, user.password
end
fill_in 'nick', :with => nick
fill_in 'password', :with => password
find('input[type=submit]').click
end
end