I have an app at
http://github.com/rails3book/ticketee which has a
feature at features/signing_up.feature. This feature worked fine until
I added the :confirmable module to my model in which case things
started to break, obviously.
So when I tried to fix it up rather than looking for a message
containing "We have sent you a confirmation email" or something along
those lines I must check for "You need to sign in or sign up before
continuing.", as the process of signing up redirects my user to the
root path which then redirects them to the sign in path.
This seems a little backwards... so is there a way to get the sign up
"action" to NOT redirect them to the root path?