aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/integration_test/integration_test_generator.rb
blob: 56c4b361342310bb329141152e953d41b8468f83 (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
module Rails
  module Generators
    class IntegrationTestGenerator < NamedBase # :nodoc:
      hook_for :integration_tool, as: :integration
    end
  end
end