This commit is contained in:
Marcel Molina 2012-05-29 12:43:44 -07:00
Родитель 9a32b451fa
Коммит dfc9e627dc
1 изменённых файлов: 1 добавлений и 6 удалений

Просмотреть файл

@ -76,12 +76,7 @@ class StringExtensionsTest < Test::Unit::TestCase
end
def test_tap
assert "http://google.com".tap do |url|
url << "/analtyics/"
end
assert "http://google.com".tap do |url|
url << "/download.zip"
end
assert_equal("http://google.com/foo/", "http://google.com".tap {|url| url << "/foo/" })
end
end