1 2 3 4 5 6 7 8 9 10 11 12 13
require 'integration_test_helper' class SetupControllerTest < ActionDispatch::IntegrationTest test 'show' do login_as User.new(name: 'Test') GovukGuix::FetchRevisionJob.enqueue('test-revision') get setup_path assert_response :success end end