Displaying 1 result from an estimated 1 matches for "create_home_pag".
Did you mean:
create_home_page
2013 Jul 19
0
Best practices for capybara's features spec?
...user is created, should I test
if there is a new model or should I go to the index page and check if the
user exist?
3. Is it possible to drop all technical details outside the scenario?
---------------------------------------------------------------------
In some scenario, I can have this :
create_home_page
sign_in
AdminUser.create!(email: ''admin-hcDgGtZH8xNBDgjK7y7TUQ@public.gmane.org'', password: ''test1234'')
#... my scenario
This is not related to what the client want to have. It''s only
implementation details. I know I can put it on a backgro...