i'm using a before filter: authenticate_user! on my pages. I have cucumber tests that test behaviour on these pages, they're now failing because i don't have an authenticated user, what is the simplest way to make these tests pass? short of having to create a user each time and log him in? is there a way? i've tested that the page is not accessible if the user is not logged in, i dont want to have to test this each time i add a test for the page
using rails 3 , devise 1.2, cucumber