aboutsummaryrefslogtreecommitdiff
path: root/test/controllers/backends/terraform_aws_controller_test.rb
blob: 0c574fae3ac8d7b0414aa46969a090e984b92c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'test_helper'

class Backends::TerraformAwsControllerTest < ActionDispatch::IntegrationTest
  test "should get new" do
    get backends_terraform_aws_new_url
    assert_response :success
  end

  test "should get show" do
    get backends_terraform_aws_show_url
    assert_response :success
  end

end