2つのカピバラテストがあります。1つはユーザーにサインインし、もう1つはログインしたユーザーだけが使用できる機能をテストすることを目的としています。
ただし、セッションがテスト間で維持されていないため、2番目のテストを機能させることができません(明らかに、そうあるべきです)。
require 'integration_test_helper'
class SignupTest < ActionController::IntegrationTest
test 'sign up' do
visit '/'
click_link 'Sign Up!'
fill_in 'Email', :with => 'bob@wagonlabs.com'
click_button 'Sign up'
assert page.has_content?("Password can't be blank")
fill_in 'Email', :with => 'bob@wagonlabs.com'
fill_in 'Password', :with => 'password'
fill_in 'Password confirmation', :with => 'password'
click_button 'Sign up'
assert page.has_content?("You have signed up successfully.")
end
test 'create a product' do
visit '/admin'
save_and_open_page
end
end
save_and_open_page呼び出しによって生成されたページは、グローバルログイン画面であり、私が期待するような管理者のホームページではありません(サインアップはログインします)。私はここで何が間違っているのですか?