mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Tests for metal generator.
This commit is contained in:
18
railties/test/generators/metal_generator_test.rb
Normal file
18
railties/test/generators/metal_generator_test.rb
Normal file
@@ -0,0 +1,18 @@
|
||||
require 'abstract_unit'
|
||||
require 'generators/generators_test_helper'
|
||||
require 'generators/rails/metal/metal_generator'
|
||||
|
||||
class MetalGeneratorTest < GeneratorsTestCase
|
||||
|
||||
def test_metal_skeleton_is_created
|
||||
run_generator
|
||||
assert_file "app/metal/foo.rb", /class Foo/
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
def run_generator(args=[])
|
||||
silence(:stdout) { Rails::Generators::MetalGenerator.start ["foo"].concat(args), :root => destination_root }
|
||||
end
|
||||
|
||||
end
|
||||
@@ -44,8 +44,4 @@ class PluginGeneratorTest < GeneratorsTestCase
|
||||
silence(:stdout) { Rails::Generators::PluginGenerator.start ["plugin_fu"].concat(args), :root => destination_root }
|
||||
end
|
||||
|
||||
def generator(options={})
|
||||
@generator ||= Rails::Generators::PluginGenerator.new(["plugin_fu"], options, :root => destination_root)
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user