Skip to content
Extraits de code Groupes Projets
likes_info_spec.js 822 octets
Newer Older
  • Learn to ignore specific revisions
  • describe("app.views.LikesInfo", function(){
      beforeEach(function(){
        window.current_user = app.user({id : -1, name: "alice", avatar : {small : "http://avatar.com/photo.jpg"}});
    
        var posts = $.parseJSON(spec.readFixture("multi_stream_json"))["posts"];
    
        this.post = new app.models.Post(posts[0]); // post with a like
    
        this.view = new app.views.LikesInfo({model: this.post});
      });
    
      describe(".render", function(){
        it("displays a the like count if it is above zero", function() {
          this.view.render();
    
          expect($(this.view.el).text()).toContain(this.view.model.get("likes_count"))
        })
    
        it("does not display the like count if it is zero", function() {
          this.post.save({likes_count : 0});
          this.view.render();
    
          expect($(this.view.el).html().trim()).toBe("");
        })
      })
    })