test/error_test.rb in muri-0.0.8 vs test/error_test.rb in muri-0.0.9
- old
+ new
@@ -3,31 +3,35 @@
describe "Parse Errors" do
@no_parser = ["http://media.photobucket.com/image/searchterm/pbapi/file.jpg",
"http://pic.pbsrc.com/dev_help/WebHelpPublic/PhotobucketPublicHelp.htm"]
@unsupported = ["http://gi0006.photobucket.com/groups/0006/",
+ #"http://gi0006.photobucket.com/groups/m/m/a.a",
+ #"http://gi0006.photobucket.com/groups/0006/G5PAK3TBQS/DSCF0015-1-1.jpg",
"http://www.flickr.com/photos",
"http://img178.imageshack.us/img178/",
"http://img178.imageshack.us/img178/773/",
+ "http://img178.imageshack.us/img178//",
+ #"http://img178.imageshack.us///",
"http://vimeo.com/",
"http://vimeo.com/moogaloop.swf?server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1",
"http://vimeo.com/moogaloop.swf?server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1"]
@no_parser.each do |a|
it "#{a} should return NoParser" do
#lambda { Muri.parse a }.should raise_exception(Muri::NoParser)
m = Muri.parse a
- m.valid? == false
- m.errors == "Muri::NoParser"
+ m.valid?.should == false
+ m.errors.should == "Muri::NoParser"
end
end
@unsupported.each do |b|
it "#{b} should return UnsupportedURI" do
#lambda { Muri.parse b }.should raise_exception(Muri::UnsupportedURI)
m = Muri.parse b
- m.valid? == false
- m.errors == "Muri::UnsupportedURI"
+ m.valid?.should == false
+ m.errors.should == "Muri::UnsupportedURI"
end
end
it "should not bomb if no URI is provided" do
lambda { Muri.parse '' }.should_not raise_exception()