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:
parent
64249223eb
commit
c5f4b20275
2 changed files with 5 additions and 4 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue