test/tc_shorturl.rb in shorturl-0.8.2 vs test/tc_shorturl.rb in shorturl-0.8.3
- old
+ new
@@ -25,10 +25,9 @@
assert ShortURL.shorten(@url).url?
# All the services (I can't test exact URLs since they seem to
# change semi regularly)
ShortURL.valid_services.each do |service|
- puts "Testing #{service}"
assert ShortURL.shorten(@url, service).url?
end
# An invalid service
assert_raise(InvalidService) { ShortURL.shorten(@url, :foobar) }