Last active
December 21, 2015 04:29
-
-
Save derekkraan/6250095 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def test_with_cleaner(example) | |
if $truncate | |
DatabaseCleaner.clean_with :truncation | |
$truncate = false | |
end | |
if example.metadata[:js].blank? | |
DatabaseCleaner.start | |
end | |
example.run | |
ensure | |
if example.metadata[:js] | |
# queue truncation | |
$truncate = true | |
else | |
DatabaseCleaner.clean | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment