./spec/animoto/song_spec.rb in animoto-0.0.0.alpha1 vs ./spec/animoto/song_spec.rb in animoto-0.0.0.alpha2
- old
+ new
@@ -5,13 +5,13 @@
describe "#to_hash" do
before do
@song = Animoto::Song.new 'http://website.com/song.mp3'
end
- it "should have a 'source_url' key with the url" do
- @song.to_hash.should have_key('source_url')
- @song.to_hash['source_url'].should == @song.source_url
+ it "should have a 'source' key with the url" do
+ @song.to_hash.should have_key('source')
+ @song.to_hash['source'].should == @song.source
end
describe "if a start time was specified" do
before do
@song.start_time = 30.2
@@ -30,25 +30,8 @@
it "should have a 'duration' key with the duration" do
@song.to_hash.should have_key('duration')
@song.to_hash['duration'].should == @song.duration
end
- end
-
- describe "if a title and/or artist was specified" do
- before do
- @song.title = "Antarctican Drinking Song"
- @song.artist = "Gwar"
- end
-
- it "should have an 'artist' key with the artist" do
- @song.to_hash.should have_key('artist')
- @song.to_hash['artist'].should == @song.artist
- end
-
- it "should have a 'title' key with the title" do
- @song.to_hash.should have_key('title')
- @song.to_hash['title'].should == @song.title
- end
- end
+ end
end
end