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

@ -22,7 +22,7 @@ class Annotation < Struct.new(:line, :tag, :text)
# If +options+ has a flag <tt>:tag</tt> the tag is shown as in the example above.
# Otherwise the string contains just line and text.
def to_s(options={})
s = "[#{line.to_s.rjust(options[:indent])}]"
s = "[#{line.to_s.rjust(options[:indent])}] "
s << "[#{tag}] " if options[:tag]
s << text
end

@ -28,7 +28,7 @@ def teardown
Dir.chdir(app_path) do
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 haml/, output
@ -38,8 +38,9 @@ def teardown
assert_equal 5, lines.size
lines.each do |line_number|
assert_equal 4, line_number.size
lines.each do |line|
assert_equal 4, line[0].size
assert_equal ' ', line[1]
end
end