Sha256: 7abced1ea0531cc612458d4b760a677d39389c0479d690a9dd2c53c7a277e1a0
Contents?: true
Size: 1.91 KB
Versions: 1
Compression:
Stored size: 1.91 KB
Contents
require 'lib/muri.rb' shared_examples_for "Photobucket parse" do it "should be Photobucket service" do @a.service == 'Photobucket' end end describe "Photobucket parse first" do before (:all) do @a = Muri.parse 'http://i244.photobucket.com/albums/gg17/pbapi/file.jpg' end it_should_behave_like "Photobucket parse" it "should have media id" do @a.media_id == 'file' end it "should have content type" do @a.content_type == "jpg" end it "should have media url" do @a.media_url == "http://s244.photobucket.com/albums/gg17/pbapi/?action=view¤t=file.jpg" end it "should have website" do @a.website == "http://i244.photobucket.com/albums/gg17/pbapi/file.jpg" end it "should have media api id" do @a.media_api_id == "http://s244.photobucket.com/albums/gg17/pbapi/?action=view¤t=file.jpg" end it "should have media thumbnail" do @a.media_thumbnail == 'http://mobth244.photobucket.com/albums/gg17/pbapi/file.jpg' end end describe "Photobucket parse second" do before (:all) do @a = Muri.parse 'http://gi0006.photobucket.com/groups/0006/G5PAK3TBQS/DSCF0015-1-1.jpg' end it_should_behave_like "Photobucket parse" it "should have media id" do @a.media_id == 'DSCF0015-1-1' end it "should have content type" do @a.content_type == "jpg" end it "should have media url" do @a.media_url == "http://gs0006.photobucket.com/groups/0006/G5PAK3TBQS/?action=view¤t=DSCF0015-1-1.jpg" end it "should have website" do @a.website == "http://gi0006.photobucket.com/groups/0006/G5PAK3TBQS/DSCF0015-1-1.jpg" end it "should have media thumbnail" do @a.media_thumbnail == 'http://mobth0006.photobucket.com/groups/0006/G5PAK3TBQS/DSCF0015-1-1.jpg' end it "should have media api id" do @a.media_api_id == "http://gs0006.photobucket.com/groups/0006/G5PAK3TBQS/?action=view¤t=DSCF0015-1-1.jpg" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
muri-0.0.3 | test/photobucket_test.rb |