Skip to content

Commit

Permalink
Move SystemTesting::Base into SystemTestCase
Browse files Browse the repository at this point in the history
There's no real benefit to the using the `Base` class here because
`SystemTestCase` is already a very small class.
  • Loading branch information
eileencodes committed Feb 20, 2017
1 parent faba250 commit d63cfa2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
8 changes: 6 additions & 2 deletions actionpack/lib/system_test_case.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
require 'system_testing/base'
require 'system_testing/test_helper'
require 'system_testing/driver_adapter'

module Rails
class SystemTestCase < ActionDispatch::IntegrationTest
include SystemTesting::Base
include SystemTesting::TestHelper
include SystemTesting::DriverAdapter

ActiveSupport.run_load_hooks(:system_testing, self)
end
end
11 changes: 0 additions & 11 deletions actionpack/lib/system_testing/base.rb

This file was deleted.

0 comments on commit d63cfa2

Please sign in to comment.