aboutsummaryrefslogtreecommitdiff
path: root/test/controllers/mini_environments_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/controllers/mini_environments_controller_test.rb')
-rw-r--r--test/controllers/mini_environments_controller_test.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/controllers/mini_environments_controller_test.rb b/test/controllers/mini_environments_controller_test.rb
new file mode 100644
index 0000000..8176143
--- /dev/null
+++ b/test/controllers/mini_environments_controller_test.rb
@@ -0,0 +1,13 @@
+require 'integration_test_helper'
+
+class MiniEnvironmentsControllerTest < ActionDispatch::IntegrationTest
+ setup do
+ login_as User.new
+ end
+
+ test 'show' do
+ MiniEnvironment.create
+
+ get mini_environment_path
+ end
+end