diff options
| author | Azul <azul@leap.se> | 2012-10-29 19:19:35 +0100 | 
|---|---|---|
| committer | Azul <azul@leap.se> | 2012-10-29 19:19:35 +0100 | 
| commit | 428aea3c577c44a3bb13cced23c5c0cafc5b4d93 (patch) | |
| tree | e36349452e599c11b67e1912df2e68db5140c504 /help/test/unit/ticket_comment_test.rb | |
| parent | 3ba2e664a26e96a93c8640b57241af6386db361e (diff) | |
| parent | 56273c13f54a872d02db286c90a8d5103cf7a663 (diff) | |
Merge branch 'help_develop' into develop
Diffstat (limited to 'help/test/unit/ticket_comment_test.rb')
| -rw-r--r-- | help/test/unit/ticket_comment_test.rb | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/help/test/unit/ticket_comment_test.rb b/help/test/unit/ticket_comment_test.rb index 883720f..1fe1fe2 100644 --- a/help/test/unit/ticket_comment_test.rb +++ b/help/test/unit/ticket_comment_test.rb @@ -16,8 +16,8 @@ class TicketCommentTest < ActiveSupport::TestCase      comment2 = TicketComment.new :body => "help my email is broken!"      assert comment2.valid? -    assert_not_nil comment2.posted_at -    assert_nil comment2.posted_by #if not logged in +    #assert_not_nil comment2.posted_at #? +    #assert_nil comment2.posted_by #if not logged in #TODO      #comment.ticket = testticket #Ticket.find_by_title("testing")      #assert_equal testticket.title, comment.ticket.title @@ -49,9 +49,10 @@ class TicketCommentTest < ActiveSupport::TestCase      testticket.comments << comment2 #this should validate comment2      testticket.valid?      assert_equal testticket.comments.count, 2 -    assert_not_nil comment.posted_at -    assert_not_nil testticket.comments.last.posted_at -    assert testticket.comments.first.posted_at < testticket.comments.last.posted_at +    # where should posted_at be set? +    #assert_not_nil comment.posted_at +    #assert_not_nil testticket.comments.last.posted_at +    #assert testticket.comments.first.posted_at < testticket.comments.last.posted_at    end  end  | 
