diaspora/spec/javascripts/app/views/post/newspaper_spec.js
2012-04-04 18:59:19 -07:00

12 lines
No EOL
283 B
JavaScript

describe("app.views.Post.Newspaper", function(){
beforeEach(function(){
this.post = factory.post()
this.view = new app.views.Post.Newspaper({model : this.post})
})
describe("rendering", function(){
it("is happy", function(){
this.view.render()
})
})
})