aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators/plugin_generator_test.rb
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-08-15 16:50:10 -0400
committerGitHub <noreply@github.com>2017-08-15 16:50:10 -0400
commit692fab26b142c724f0b824db5029c70a88676808 (patch)
tree580a413396820b617e1479a9bb87316b52d8c9b9 /railties/test/generators/plugin_generator_test.rb
parentd8bf5d73c39ff6758b3a86a58b1b096006f4bb42 (diff)
parent1a1f319cd498ee926aa7b0e3481b213de59be041 (diff)
downloadrails-692fab26b142c724f0b824db5029c70a88676808.tar.gz
rails-692fab26b142c724f0b824db5029c70a88676808.tar.bz2
rails-692fab26b142c724f0b824db5029c70a88676808.zip
Merge pull request #30238 from bogdanvlviv/add-skip_yarn-for-plugin_generator
Add `--skip-yarn` option to the plugin generator
Diffstat (limited to 'railties/test/generators/plugin_generator_test.rb')
-rw-r--r--railties/test/generators/plugin_generator_test.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/railties/test/generators/plugin_generator_test.rb b/railties/test/generators/plugin_generator_test.rb
index bd76af86e1..e94b1ac8fe 100644
--- a/railties/test/generators/plugin_generator_test.rb
+++ b/railties/test/generators/plugin_generator_test.rb
@@ -26,6 +26,10 @@ class PluginGeneratorTest < Rails::Generators::TestCase
destination File.join(Rails.root, "tmp/bukkits")
arguments [destination_root]
+ def application_path
+ "#{destination_root}/test/dummy"
+ end
+
# brings setup, teardown, and some tests
include SharedGeneratorTests