+
+
We're sorry, but something went wrong.
+
+
If you are the application owner check the logs for more information.
+
+
+
diff --git a/test/dummy/public/apple-touch-icon-precomposed.png b/test/dummy/public/apple-touch-icon-precomposed.png
new file mode 100644
index 00000000..e69de29b
diff --git a/test/dummy/public/apple-touch-icon.png b/test/dummy/public/apple-touch-icon.png
new file mode 100644
index 00000000..e69de29b
diff --git a/test/dummy/public/favicon.ico b/test/dummy/public/favicon.ico
new file mode 100644
index 00000000..e69de29b
diff --git a/test/dummy/storage/.keep b/test/dummy/storage/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/dummy/tmp/.keep b/test/dummy/tmp/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/dummy/tmp/pids/.keep b/test/dummy/tmp/pids/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/dummy/tmp/storage/.keep b/test/dummy/tmp/storage/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/helpers/.keep b/test/helpers/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/integration/.keep b/test/integration/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/integration/navigation_test.rb b/test/integration/navigation_test.rb
new file mode 100644
index 00000000..ebbc098a
--- /dev/null
+++ b/test/integration/navigation_test.rb
@@ -0,0 +1,7 @@
+require "test_helper"
+
+class NavigationTest < ActionDispatch::IntegrationTest
+ # test "the truth" do
+ # assert true
+ # end
+end
diff --git a/test/mailers/.keep b/test/mailers/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/models/.keep b/test/models/.keep
new file mode 100644
index 00000000..e69de29b
diff --git a/test/stealth_test.rb b/test/stealth_test.rb
new file mode 100644
index 00000000..4591c176
--- /dev/null
+++ b/test/stealth_test.rb
@@ -0,0 +1,7 @@
+require "test_helper"
+
+class StealthTest < ActiveSupport::TestCase
+ test "it has a version number" do
+ assert Stealth::VERSION
+ end
+end
diff --git a/test/test_helper.rb b/test/test_helper.rb
new file mode 100644
index 00000000..9d47a1bf
--- /dev/null
+++ b/test/test_helper.rb
@@ -0,0 +1,15 @@
+# Configure Rails Environment
+ENV["RAILS_ENV"] = "test"
+
+require_relative "../test/dummy/config/environment"
+ActiveRecord::Migrator.migrations_paths = [File.expand_path("../test/dummy/db/migrate", __dir__)]
+ActiveRecord::Migrator.migrations_paths << File.expand_path("../db/migrate", __dir__)
+require "rails/test_help"
+
+# Load fixtures from the engine
+if ActiveSupport::TestCase.respond_to?(:fixture_paths=)
+ ActiveSupport::TestCase.fixture_paths = [File.expand_path("fixtures", __dir__)]
+ ActionDispatch::IntegrationTest.fixture_paths = ActiveSupport::TestCase.fixture_paths
+ ActiveSupport::TestCase.file_fixture_path = File.expand_path("fixtures", __dir__) + "/files"
+ ActiveSupport::TestCase.fixtures :all
+end