aboutsummaryrefslogtreecommitdiff
path: root/test/controllers/setup_controller_test.rb
blob: 9524f7150476034c9fb5090a05eaa403f3e90a3f (plain)
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