I'm getting this error, been trying to find where I'm going wrong:
Failures:
1) Authentication signin with valid information followed by signout
Failure/Error: before { click_link "Sign out" }
ArgumentError:
wrong number of arguments (0 for 1)
# ./app/helpers/sessions_helper.rb:22:in `sign_out'
# ./app/controllers/sessions_controller.rb:18:in `destroy'
# (eval):2:in `click_link'
# ./spec/requests/authentication_pages_spec.rb:43:in `block (5 levels) in <top (required)>'
Finished in 0.95094 seconds
51 examples, 1 failure
Failed examples:
rspec ./spec/requests/authentication_pages_spec.rb:44 # Authentication signin with valid information followed by signout
Other related files:
authentication_pages_spec.rb
describe "signin" do
before { visit signin_path }
describe "with invalid information" do
before { click_button "Sign in" }
it { should have_selector('title', text: 'Sign in') }
it { should have_selector('div.alert.alert-error', text: 'Invalid') }
describe "after visiting another page" do
before { click_link "Home" }
it { should_not have_selector('div.alert.alert-error') }
end
end
describe "with valid information" do
let(:user) { FactoryGirl.create(:user) }
before do
fill_in "Email", with: user.email
fill_in "Password", with: user.password
click_button "Sign in"
end
it { should have_selector('title', text: user.name) }
it { should have_link('Profile', href: user_path(user)) }
it { should have_link('Sign out', href: signout_path) }
it { should_not have_link('Sign in', href: signin_path) }
describe "followed by signout" do
before { click_link "Sign out" }
it { should have_link('Sign in') }
end
end
end
end
Some pointers as to what to look for in my app would be great. I've checked through the tutorial code and can't find anything different in what I'm doing. Any help much appreciated!
Edit
I discovered what the problem was I was using the wrong notation in the sessions_helper.rb when defining the sign_out method. I had:
def sign_out
current_user = nil
cookies.delete[:remember_token]
end
When it should have been:
def sign_out
current_user = nil
cookies.delete(:remember_token)
end
I ended up finding it via the error reporting through the browser as opposed to rspec's reporting.