1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/generators/integration_test_generator_test.rb

13 lines
439 B
Ruby
Raw Normal View History

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
2009-06-26 03:53:53 -04:00
assert_file "test/integration/integration_test.rb", /class IntegrationTest < ActionController::IntegrationTest/
end
end