aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
diff options
context:
space:
mode:
authorOscar Del Ben <info@oscardelben.com>2012-05-29 08:49:53 -0700
committerOscar Del Ben <info@oscardelben.com>2012-05-29 20:41:32 -0700
commit2f71d4063f17e25310939f81246ada0accff0342 (patch)
treec508fa8e05930326a3e9a8f68ef6ea72116f3a8f /railties/test
parent4ababde21fbb18795e8d32f55c941ce5a206a6de (diff)
downloadrails-2f71d4063f17e25310939f81246ada0accff0342.tar.gz
rails-2f71d4063f17e25310939f81246ada0accff0342.tar.bz2
rails-2f71d4063f17e25310939f81246ada0accff0342.zip
Remove irrelevant assertion
Diffstat (limited to 'railties/test')
-rw-r--r--railties/test/application/rake/notes_test.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb
index df65d6126c..dd401009f7 100644
--- a/railties/test/application/rake/notes_test.rb
+++ b/railties/test/application/rake/notes_test.rb
@@ -29,19 +29,12 @@ 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_match /note in coffee/, output
-
- assert_equal 5, lines.size
-
- lines.each do |line_number|
- assert_equal 4, line_number.size
- end
end
end