aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/system_testing/test_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/system_testing/test_helper.rb')
-rw-r--r--actionpack/lib/system_testing/test_helper.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/lib/system_testing/test_helper.rb b/actionpack/lib/system_testing/test_helper.rb
new file mode 100644
index 0000000000..68b187ed7a
--- /dev/null
+++ b/actionpack/lib/system_testing/test_helper.rb
@@ -0,0 +1,12 @@
+require 'capybara/rails'
+
+module SystemTesting
+ module TestHelper
+ include Capybara::DSL
+
+ def after_teardown
+ Capybara.reset_sessions!
+ super
+ end
+ end
+end