aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/rake
diff options
context:
space:
mode:
authorAnton Lindqvist <anton@qvister.se>2011-12-26 16:58:30 +0100
committerAnton Lindqvist <anton@qvister.se>2011-12-26 16:58:30 +0100
commit9299bfdcd387253d83b645c205b8df477f2d0940 (patch)
treeb469c57ea4b7ac70249e97d2b48665dd1eee10db /railties/test/application/rake
parent9fffef5f463d3c1f518373423c9e2044836b0de6 (diff)
downloadrails-9299bfdcd387253d83b645c205b8df477f2d0940.tar.gz
rails-9299bfdcd387253d83b645c205b8df477f2d0940.tar.bz2
rails-9299bfdcd387253d83b645c205b8df477f2d0940.zip
Align rake notes.
Diffstat (limited to 'railties/test/application/rake')
-rw-r--r--railties/test/application/rake/notes_test.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb
index 659cbfec0f..f4e74deb83 100644
--- a/railties/test/application/rake/notes_test.rb
+++ b/railties/test/application/rake/notes_test.rb
@@ -17,6 +17,7 @@ module ApplicationTests
app_file "app/views/home/index.html.erb", "<% # TODO: note in erb %>"
app_file "app/views/home/index.html.haml", "-# TODO: note in haml"
app_file "app/views/home/index.html.slim", "/ TODO: note in slim"
+ app_file "app/controllers/application_controller.rb", 1000.times.map { "" }.join("\n") << "# TODO: note in ruby"
boot_rails
require 'rake'
@@ -27,10 +28,18 @@ module ApplicationTests
Dir.chdir(app_path) do
output = `bundle exec rake notes`
+ lines = output.scan(/\[([0-9\s]+)\]/).flatten
assert_match /note in erb/, output
assert_match /note in haml/, output
assert_match /note in slim/, output
+ assert_match /note in ruby/, output
+
+ assert_equal 4, lines.size
+ assert_equal 4, lines[0].size
+ assert_equal 4, lines[1].size
+ assert_equal 4, lines[2].size
+ assert_equal 4, lines[3].size
end
end