aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators
diff options
context:
space:
mode:
authorArthur Nogueira Neves <github@arthurnn.com>2015-03-19 09:19:22 -0400
committerArthur Nogueira Neves <github@arthurnn.com>2015-03-19 09:19:22 -0400
commitbee9434cdf4f56dc51027a8890cf04f506544735 (patch)
tree61973f614c9d2b9a097c395273b36a03e44e3144 /railties/test/generators
parentdfdb08f0923d22b66d6a41e7935ca3a2e02dd15a (diff)
parent2f23f97b2e58ddb13af30d12c149e55d610a8a26 (diff)
downloadrails-bee9434cdf4f56dc51027a8890cf04f506544735.tar.gz
rails-bee9434cdf4f56dc51027a8890cf04f506544735.tar.bz2
rails-bee9434cdf4f56dc51027a8890cf04f506544735.zip
Merge pull request #19387 from arthurnn/fix_route_regression
Add a new-line to the end of route method generated code.
Diffstat (limited to 'railties/test/generators')
-rw-r--r--railties/test/generators/actions_test.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/railties/test/generators/actions_test.rb b/railties/test/generators/actions_test.rb
index c6de2c1fb9..c0b88089b3 100644
--- a/railties/test/generators/actions_test.rb
+++ b/railties/test/generators/actions_test.rb
@@ -219,6 +219,30 @@ class ActionsTest < Rails::Generators::TestCase
assert_file 'config/routes.rb', /#{Regexp.escape(route_command)}/
end
+ def test_route_should_add_data_with_an_new_line
+ run_generator
+ action :route, "root 'welcome#index'"
+ route_path = File.expand_path("config/routes.rb", destination_root)
+ content = File.read(route_path)
+
+ # Remove all of the comments and blank lines from the routes file
+ content.gsub!(/^ \#.*\n/, '')
+ content.gsub!(/^\n/, '')
+
+ File.open(route_path, "wb") { |file| file.write(content) }
+ assert_file "config/routes.rb", /\.routes\.draw do\n root 'welcome#index'\nend\n\z/
+
+ action :route, "resources :product_lines"
+
+ routes = <<-F
+Rails.application.routes.draw do
+ resources :product_lines
+ root 'welcome#index'
+end
+F
+ assert_file "config/routes.rb", routes
+ end
+
def test_readme
run_generator
Rails::Generators::AppGenerator.expects(:source_root).times(2).returns(destination_root)