blob: 37e6e678a37492d77456cef89c74e5b5ff2d6a55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
require 'test_helper'
class TicketCommentTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
=begin
setup do
@sample_ticket = Ticket.create :title => 'test ticket'
@sample_ticket.save
end
=end
test "create" do
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
#comment.ticket = testticket #Ticket.find_by_title("testing")
#assert_equal testticket.title, comment.ticket.title
#tc.ticket = Ticket.find_by_title("test title")
#tc.ticket.title
end
test "add comments" do
testticket = Ticket.create :title => "testing"
assert_equal testticket.comments.count, 0
comment = TicketComment.new :body => "my email broke"
assert comment.valid? #validating or saving necessary for setting posted_at
assert_not_nil comment.posted_at
testticket.comments << comment
assert_equal testticket.comments.count, 1
sleep(1) # so first comment has earlier posted_at time
comment2 = TicketComment.new :body => "my email broke"
comment2.save #possible to save only if ticketcomment is a model now
testticket.comments << comment2
assert_equal testticket.comments.count, 2
assert testticket.comments.first.posted_at < testticket.comments.last.posted_at
end
end
|