aboutsummaryrefslogtreecommitdiff
path: root/test/controllers/setup_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/controllers/setup_controller_test.rb')
-rw-r--r--test/controllers/setup_controller_test.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/test/controllers/setup_controller_test.rb b/test/controllers/setup_controller_test.rb
index d350d63..0f8326b 100644
--- a/test/controllers/setup_controller_test.rb
+++ b/test/controllers/setup_controller_test.rb
@@ -1,7 +1,11 @@
-require 'test_helper'
+require 'integration_test_helper'
class SetupControllerTest < ActionDispatch::IntegrationTest
- # test "the truth" do
- # assert true
- # end
+ test 'show' do
+ login_as User.new(name: 'Test')
+
+ get setup_path
+
+ assert_response :success
+ end
end