aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/integration_test/integration_test_generator.rb
blob: 975dd8b90c1fdc9ab22e24049b17d9ed4508b2b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Rails
  module Generators
    class IntegrationTestGenerator < NamedBase # :nodoc:
      hook_for :integration_tool, as: :integration
    end
  end
end