diaspora/spec/javascripts/app/collections/comments_collection_spec.js
2012-01-18 19:08:36 -08:00

10 lines
313 B
JavaScript

describe("app.collections.comments", function(){
describe("url", function(){
it("should user the post id", function(){
var post =new app.models.Post({id : 5})
var collection = new app.collections.Comments([], {post : post})
expect(collection.url).toBe("/posts/5/comments")
})
})
})