diff options
author | Ivan Vanderbyl <ivanvanderbyl@me.com> | 2011-08-23 20:10:37 +1000 |
---|---|---|
committer | Malcolm Locke <malc@wholemeal.co.nz> | 2012-03-21 13:19:14 +1300 |
commit | 5c1109a68e098188803a6232be55dfff1e5e12eb (patch) | |
tree | 0d91285ccb4db477de821ffdf2d5c9ef352ae730 /railties/test/generators | |
parent | b49a7ddce18a35a39fd5b3f6003d4a02cbd09b0e (diff) | |
download | rails-5c1109a68e098188803a6232be55dfff1e5e12eb.tar.gz rails-5c1109a68e098188803a6232be55dfff1e5e12eb.tar.bz2 rails-5c1109a68e098188803a6232be55dfff1e5e12eb.zip |
Added a generator option to remove the public/index.html file when generating a new Rails application
The option is:
-i, [--skip-index-html] # Skip public/index.html file
Diffstat (limited to 'railties/test/generators')
-rw-r--r-- | railties/test/generators/app_generator_test.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb index d8887a6471..8bcc40a0dd 100644 --- a/railties/test/generators/app_generator_test.rb +++ b/railties/test/generators/app_generator_test.rb @@ -240,6 +240,13 @@ class AppGeneratorTest < Rails::Generators::TestCase end end + def test_generator_if_skip_index_html_is_given + run_generator [destination_root, "--skip-index-html"] + assert_no_file "public/index.html" + assert_no_file "app/assets/images/rails.png" + assert_file "app/assets/images/.gitkeep" + end + def test_creation_of_a_test_directory run_generator assert_file 'test' |