diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/application_system_test_case.rb | 5 | ||||
-rw-r--r-- | test/controllers/.keep | 0 | ||||
-rw-r--r-- | test/fixtures/.keep | 0 | ||||
-rw-r--r-- | test/fixtures/files/.keep | 0 | ||||
-rw-r--r-- | test/helpers/.keep | 0 | ||||
-rw-r--r-- | test/integration/.keep | 0 | ||||
-rw-r--r-- | test/mailers/.keep | 0 | ||||
-rw-r--r-- | test/models/.keep | 0 | ||||
-rw-r--r-- | test/system/.keep | 0 | ||||
-rw-r--r-- | test/test_helper.rb | 9 |
10 files changed, 14 insertions, 0 deletions
diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb new file mode 100644 index 0000000..d19212a --- /dev/null +++ b/test/application_system_test_case.rb | |||
@@ -0,0 +1,5 @@ | |||
1 | require "test_helper" | ||
2 | |||
3 | class ApplicationSystemTestCase < ActionDispatch::SystemTestCase | ||
4 | driven_by :selenium, using: :chrome, screen_size: [1400, 1400] | ||
5 | end | ||
diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/controllers/.keep | |||
diff --git a/test/fixtures/.keep b/test/fixtures/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/fixtures/.keep | |||
diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/fixtures/files/.keep | |||
diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/helpers/.keep | |||
diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/integration/.keep | |||
diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/mailers/.keep | |||
diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/models/.keep | |||
diff --git a/test/system/.keep b/test/system/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/system/.keep | |||
diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..e3c4ff0 --- /dev/null +++ b/test/test_helper.rb | |||
@@ -0,0 +1,9 @@ | |||
1 | require File.expand_path('../../config/environment', __FILE__) | ||
2 | require 'rails/test_help' | ||
3 | |||
4 | class ActiveSupport::TestCase | ||
5 | # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. | ||
6 | fixtures :all | ||
7 | |||
8 | # Add more helper methods to be used by all tests here... | ||
9 | end | ||