From 97d8b7abfe75b6a7617966ad0b3d37ae9fc7adb8 Mon Sep 17 00:00:00 2001 From: eileencodes Date: Fri, 5 Aug 2016 09:58:43 -0400 Subject: Add skeleton for Rails::SystemTestCase This skelton is the bare minimum to get system tests to actually run in an application. This of course doesn't yet actually run a test but it is enough for `bin/rails test:system` to attempt to run files in `test/system` that inherit from `Rails::SystemTestCase`. --- actionpack/lib/system_test_case.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 actionpack/lib/system_test_case.rb (limited to 'actionpack/lib') diff --git a/actionpack/lib/system_test_case.rb b/actionpack/lib/system_test_case.rb new file mode 100644 index 0000000000..fdaae3ff40 --- /dev/null +++ b/actionpack/lib/system_test_case.rb @@ -0,0 +1,5 @@ +module Rails + class SystemTestCase < ActiveSupport::TestCase + include Rails.application.routes.url_helpers + end +end -- cgit v1.2.3