blob: 0f8326b5efd0dbe70bfa99d9cb57cb7998650fc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'integration_test_helper'
class SetupControllerTest < ActionDispatch::IntegrationTest
test 'show' do
login_as User.new(name: 'Test')
get setup_path
assert_response :success
end
end
|