diaspora/spec/javascripts/app/views/post_form_spec.js
2012-03-27 14:51:40 -07:00

10 lines
No EOL
233 B
JavaScript

describe("app.views.PostForm", function(){
beforeEach(function(){
this.post = new app.models.Post();
this.view = new app.views.PostForm({model : this.post})
})
it("renders", function(){
this.view.render()
})
})