Clarify string length versus line count

This commit is contained in:
tjkirch
2011-03-06 12:29:15 +00:00
committed by Tom Kirchner
parent ac3b3d6957
commit 3e6d01a15b
2 changed files with 8 additions and 4 deletions

View File

@@ -40,7 +40,8 @@ class AboutStrings < EdgeCase::Koan
It was the best of times, It was the best of times,
It was the worst of times. It was the worst of times.
} }
assert_equal __, long_string.size assert_equal __, long_string.length
assert_equal __, long_string.lines.count
end end
def test_here_documents_can_also_handle_multiple_lines def test_here_documents_can_also_handle_multiple_lines
@@ -48,7 +49,8 @@ It was the worst of times.
It was the best of times, It was the best of times,
It was the worst of times. It was the worst of times.
EOS EOS
assert_equal __, long_string.size assert_equal __, long_string.length
assert_equal __, long_string.lines.count
end end
def test_plus_will_concatenate_two_strings def test_plus_will_concatenate_two_strings

View File

@@ -40,7 +40,8 @@ class AboutStrings < EdgeCase::Koan
It was the best of times, It was the best of times,
It was the worst of times. It was the worst of times.
} }
assert_equal __(54), long_string.size assert_equal __(54), long_string.length
assert_equal __(3), long_string.lines.count
end end
def test_here_documents_can_also_handle_multiple_lines def test_here_documents_can_also_handle_multiple_lines
@@ -48,7 +49,8 @@ It was the worst of times.
It was the best of times, It was the best of times,
It was the worst of times. It was the worst of times.
EOS EOS
assert_equal __(53), long_string.size assert_equal __(53), long_string.length
assert_equal __(2), long_string.lines.count
end end
def test_plus_will_concatenate_two_strings def test_plus_will_concatenate_two_strings