55831a4d50
Also adds capybara-screenshot, which will automatically save the page as html and an image whenever a feature fails. Handy for debugging.
11 lines
190 B
Ruby
11 lines
190 B
Ruby
require 'database_cleaner'
|
|
|
|
DatabaseCleaner.strategy = :truncation
|
|
|
|
Spinach.hooks.before_scenario do
|
|
DatabaseCleaner.start
|
|
end
|
|
|
|
Spinach.hooks.after_scenario do
|
|
DatabaseCleaner.clean
|
|
end
|