背景の前提で、ログインしている状態にしておくメモ。 steps.rb Given /^"(.*)"でログインしていること$/ do |login| @current_user = Admin.create!( :login => login, :password => "testtest", :password_confirmation => "testtest", :email => "foobar@example.com") visit "/session/new" fill_in("ログインID", :with => login) fill_in("パスワード", :with => "testtest") click_button("ログイン") response.body.should =~ /ログインしました。/m end feature 背景: 前提 "foobar"でログイン