aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators/integration_test_generator_test.rb
blob: d05ed76d2403cf75aa8362e11aa5803927242eee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
require 'generators/generators_test_helper'
require 'rails/generators/rails/integration_test/integration_test_generator'

class IntegrationTestGeneratorTest < Rails::Generators::TestCase
  include GeneratorsTestHelper
  arguments %w(integration)

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