Sha256: d75624c8392195e13b680f740f8f3dd216971b385d3b9a5735813dd9fc7c60f0
Contents?: true
Size: 469 Bytes
Versions: 62
Compression:
Stored size: 469 Bytes
Contents
require 'test_helper' module Workarea class CommentTest < TestCase def test_default_scope commentable = create_page comment_2 = create_comment(commentable: commentable, created_at: 2.days.ago) comment_3 = create_comment(commentable: commentable, created_at: 3.days.ago) comment_1 = create_comment(commentable: commentable, created_at: 1.day.ago) assert_equal([comment_3, comment_2, comment_1], Comment.all.to_a) end end end
Version data entries
62 entries across 62 versions & 1 rubygems