Class: Rails::Generators::TestCase

Inherits:
ActiveSupport::TestCase
  • Object
show all
Includes:
FileUtils, Rails::Generators::Testing::Assertions, Rails::Generators::Testing::Behavior, Rails::Generators::Testing::SetupAndTeardown
Defined in:
lib/rails/generators/test_case.rb

Overview

This class provides a TestCase for testing generators. To set up, you need just to configure the destination and set which generator is being tested:

class AppGeneratorTest < Rails::Generators::TestCase
  tests AppGenerator
  destination File.expand_path("../tmp", __dir__)
end

If you want to ensure your destination root is clean before running each test, you can set a setup callback:

class AppGeneratorTest < Rails::Generators::TestCase
  tests AppGenerator
  destination File.expand_path("../tmp", __dir__)
  setup :prepare_destination
end

Method Summary

Methods included from Rails::Generators::Testing::Assertions

#assert_class_method, #assert_field_default_value, #assert_field_type, #assert_file, #assert_instance_method, #assert_migration, #assert_no_file, #assert_no_migration

Methods included from Rails::Generators::Testing::SetupAndTeardown

#setup, #teardown

Methods included from Rails::Generators::Testing::Behavior

#create_generated_attribute, #generator, #run_generator