aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators
diff options
context:
space:
mode:
authorTsukuru Tanimichi <info+git@ttanimichi.com>2016-11-14 18:09:26 +0900
committerTsukuru Tanimichi <info+git@ttanimichi.com>2016-11-14 20:56:49 +0900
commit592c06d7cb158df07bf87246c23af24b72d13c97 (patch)
tree21ccca2368356847c86837bc08de9559606e96fb /railties/test/generators
parent5f3222155957e887516ffd4be58c4743553415b5 (diff)
downloadrails-592c06d7cb158df07bf87246c23af24b72d13c97.tar.gz
rails-592c06d7cb158df07bf87246c23af24b72d13c97.tar.bz2
rails-592c06d7cb158df07bf87246c23af24b72d13c97.zip
Add `:skip_sprockets` to `Rails::PluginBuilder::PASSTHROUGH_OPTIONS`
`rails plugin new` with `--full` and `--skip-sprockets` options generates a dummy application that throws `NoMethodError`. ``` % rails plugin new my_engine -S --full --skip-gemspec % cd my_engine % bin/rails test rails aborted! NoMethodError: undefined method `assets' for #<Rails::Application::Configuration:0x007f83aa1e6100> ```
Diffstat (limited to 'railties/test/generators')
-rw-r--r--railties/test/generators/plugin_generator_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/railties/test/generators/plugin_generator_test.rb b/railties/test/generators/plugin_generator_test.rb
index 15079f2735..0fdc30ac43 100644
--- a/railties/test/generators/plugin_generator_test.rb
+++ b/railties/test/generators/plugin_generator_test.rb
@@ -100,6 +100,14 @@ class PluginGeneratorTest < Rails::Generators::TestCase
end
end
+ def test_generating_adds_dummy_app_in_full_mode_without_sprockets
+ run_generator [destination_root, "-S", "--full"]
+
+ assert_file "test/dummy/config/environments/production.rb" do |contents|
+ assert_no_match(/config\.assets/, contents)
+ end
+ end
+
def test_generating_adds_dummy_app_rake_tasks_without_unit_test_files
run_generator [destination_root, "-T", "--mountable", "--dummy-path", "my_dummy_app"]
assert_file "Rakefile", /APP_RAKEFILE/