aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/system_testing/screenshot_helper_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/system_testing/screenshot_helper_test.rb')
-rw-r--r--actionpack/test/system_testing/screenshot_helper_test.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/actionpack/test/system_testing/screenshot_helper_test.rb b/actionpack/test/system_testing/screenshot_helper_test.rb
deleted file mode 100644
index 8060c499df..0000000000
--- a/actionpack/test/system_testing/screenshot_helper_test.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-require "abstract_unit"
-
-class ScreenshotHelperTest < ActiveSupport::TestCase
- def test_driver_support_for_screenshots
- Rails::SystemTestCase.driver = :rails_selenium_driver
- assert Rails::SystemTestCase.driver.supports_screenshots?
-
- Rails::SystemTestCase.driver = :rack_test
- assert_not Rails::SystemTestCase.driver.supports_screenshots?
-
- Rails::SystemTestCase.driver = :selenium
- assert Rails::SystemTestCase.driver.supports_screenshots?
-
- Rails::SystemTestCase.driver = :webkit
- assert Rails::SystemTestCase.driver.supports_screenshots?
-
- Rails::SystemTestCase.driver = :poltergeist
- assert Rails::SystemTestCase.driver.supports_screenshots?
- end
-end