aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators/integration_test_generator_test.rb
blob: 2ec48950964bc4eebc1b25df4e31d57b927dd7d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require "generators/generators_test_helper"
require "rails/generators/rails/integration_test/integration_test_generator"

class IntegrationTestGeneratorTest < Rails::Generators::TestCase
  include GeneratorsTestHelper

  def test_integration_test_skeleton_is_created
    run_generator %w(integration)
    assert_file "test/integration/integration_test.rb", /class IntegrationTest < ActionDispatch::IntegrationTest/
  end

  def test_namespaced_integration_test_skeleton_is_created
    run_generator %w(iguchi/integration)
    assert_file "test/integration/iguchi/integration_test.rb", /class Iguchi::IntegrationTest < ActionDispatch::IntegrationTest/
  end

  def test_test_suffix_is_not_duplicated
    run_generator %w(integration_test)

    assert_no_file "test/integration/integration_test_test.rb"
    assert_file "test/integration/integration_test.rb"
  end
end