Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Capybara with test unit and am trying to run some Sessions testing like this:

  test "sign-in-form complete?" do
    visit sign_in_path
    assert_equal '/sign_in', current_path

    assert has_field?('Email')
    assert has_field?('Password')
    assert has_link?('Submit')
    assert has_link?('Forgotten password?')
  end

Strangely, the test fails at the assert_equal because it redirects me to the users show page for the signed in user (which I haven't signed in). This is because if the person is already logged in even though I know that the Sessions test is working. (It is pretty much the same sessions controller as that of the Hartl tutorial, and I know it is working, except that now I am trying to learn Test::Unit).

Questions:

Why does Capybara log me in automatically? (How can I not have it do this?)

Can I switch from one user to another?

Why can't I log out despite the fact that I click "Sign out" in my def setup method (which I assure you that it works through my browser.)

Here is my setup method:

def setup
    visit root_path
    assert has_link?("Sign out")
    click_link "Sign out"
    assert_equal current_path, root_path
end

Here is my configuration which is the default.

DatabaseCleaner.strategy = :truncation

class ActionDispatch::IntegrationTest
  # Make the Capybara DSL available in all integration tests
  include Capybara::DSL

  # Stop ActiveRecord from wrapping tests in transactions
  self.use_transactional_fixtures = false

  teardown do
    DatabaseCleaner.clean # Truncate the database
    Capybara.reset_sessions! # Forget the (simulated) browser state
    Capybara.use_default_driver # Revert Capybara.current_driver to Capybara.default_driver
  end

end

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.