spec/filmbuff/title_spec.rb in filmbuff-0.1.5 vs spec/filmbuff/title_spec.rb in filmbuff-0.1.6
- old
+ new
@@ -15,12 +15,11 @@
it "has a title" do
@title.title.should == "The Wizard of Oz"
end
it "has a tagline" do
- @title.tagline.should == "\"The Wizard\" Musical Returns By " <<
- "Unprecedented Demand! [UK re-release]"
+ @title.tagline.should == "Mighty Miracle Show Of 1000 Delights !"
end
it "has a plot" do
@title.plot.should == "Dorothy Gale is swept away to a magical land in" <<
" a tornado and embarks on a quest to see the Wizard who can help her " <<
@@ -42,14 +41,14 @@
it "has a poster URL" do
@title.poster_url.should match /http:\/\/ia.media-imdb.com\/images\/.*/
end
it "has genres" do
- @title.genres.should == %w[ Adventure Comedy Family Fantasy Musical ]
+ @title.genres.should == %w[ Adventure Family Fantasy Musical ]
end
it "has a release date" do
- @title.release_date.should == DateTime.parse("1939-08-25")
+ @title.release_date.should == Date.parse("1939-08-25")
end
end
context "given locale" do
before(:all) do