Merge pull request #3091 from Raven24/fix-wp-spec

make app.views.Post.Wallpaper spec pass
This commit is contained in:
Daniel Grippi 2012-04-01 18:23:21 -07:00
commit 9573bb55ee

View file

@ -8,7 +8,7 @@ describe("app.views.Post.Wallpaper", function(){
it("has the image as the photo-fill", function(){
this.view.render()
expect(this.view.$(".photo-fill").data("img-src")).toBe("http://omgimabackground.com/wow.gif") //for the cuke
expect(this.view.$(".photo-fill").css("background-image")).toBe("url(http://omgimabackground.com/wow.gif)")
expect(this.view.$(".photo-fill").css("background-image")).toBe('url("http://omgimabackground.com/wow.gif")')
})
})
})
})