summaryrefslogtreecommitdiff
path: root/spec/ci/support/db_cleaner.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ci/support/db_cleaner.rb')
-rw-r--r--spec/ci/support/db_cleaner.rb39
1 files changed, 39 insertions, 0 deletions
diff --git a/spec/ci/support/db_cleaner.rb b/spec/ci/support/db_cleaner.rb
new file mode 100644
index 00000000000..d2d532d9738
--- /dev/null
+++ b/spec/ci/support/db_cleaner.rb
@@ -0,0 +1,39 @@
+# RSpec.configure do |config|
+
+# config.around(:each) do |example|
+# DatabaseCleaner.strategy = :transaction
+# DatabaseCleaner.clean_with(:truncation)
+# DatabaseCleaner.cleaning do
+# example.run
+# end
+# end
+
+# config.around(:each, js: true) do |example|
+# DatabaseCleaner.strategy = :truncation
+# DatabaseCleaner.clean_with(:truncation)
+# DatabaseCleaner.cleaning do
+# example.run
+# end
+# end
+# end
+RSpec.configure do |config|
+ config.before(:suite) do
+ DatabaseCleaner.clean_with(:truncation)
+ end
+
+ config.before(:each) do
+ DatabaseCleaner.strategy = :transaction
+ end
+
+ config.before(:each, :js => true) do
+ DatabaseCleaner.strategy = :truncation
+ end
+
+ config.before(:each) do
+ DatabaseCleaner.start
+ end
+
+ config.after(:each) do
+ DatabaseCleaner.clean
+ end
+end