Guest User

Untitled

a guest
Jan 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Rspec.configure do |config|
  2.  
  3. ###...other stuff
  4.  
  5. config.before(:suite) do
  6. DatabaseCleaner.strategy = :truncation
  7. DatabaseCleaner.clean_with(:truncation)
  8. end
  9.  
  10. config.after(:each) do
  11. DatabaseCleaner.clean
  12. end
  13.  
  14. end
Add Comment
Please, Sign In to add comment