1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fixed missing space bug introduces in rails/rails@9299bfdcd3.

This commit is contained in:
Anton Lindqvist 2012-03-22 12:25:10 +01:00
parent 64249223eb
commit c5f4b20275
2 changed files with 5 additions and 4 deletions

View file

@ -28,7 +28,7 @@ module ApplicationTests
Dir.chdir(app_path) do Dir.chdir(app_path) do
output = `bundle exec rake notes` output = `bundle exec rake notes`
lines = output.scan(/\[([0-9\s]+)\]/).flatten lines = output.scan(/\[([0-9\s]+)\](\s)/)
assert_match /note in erb/, output assert_match /note in erb/, output
assert_match /note in haml/, output assert_match /note in haml/, output
@ -38,8 +38,9 @@ module ApplicationTests
assert_equal 5, lines.size assert_equal 5, lines.size
lines.each do |line_number| lines.each do |line|
assert_equal 4, line_number.size assert_equal 4, line[0].size
assert_equal ' ', line[1]
end end
end end