octopi 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +1 -1
- data/lib/octopi/issue_comment.rb +1 -1
- data/octopi.gemspec +1 -1
- data/test/issue_test.rb +3 -0
- metadata +1 -1
data/VERSION.yml
CHANGED
data/lib/octopi/issue_comment.rb
CHANGED
data/octopi.gemspec
CHANGED
data/test/issue_test.rb
CHANGED
@@ -127,6 +127,9 @@ class IssueTest < Test::Unit::TestCase
|
|
127
127
|
assert first_comment.is_a?(IssueComment)
|
128
128
|
assert_equal "This is fixed in recent release.", first_comment.body
|
129
129
|
assert_equal "radar", first_comment.user
|
130
|
+
assert !first_comment.created_at.blank?
|
131
|
+
assert !first_comment.updated_at.blank?
|
132
|
+
assert !first_comment.gravatar_id.blank?
|
130
133
|
end
|
131
134
|
end
|
132
135
|
end
|