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

Version Path
workarea-core-3.5.15 test/models/workarea/comment_test.rb
workarea-core-3.4.36 test/models/workarea/comment_test.rb
workarea-core-3.5.14 test/models/workarea/comment_test.rb
workarea-core-3.4.35 test/models/workarea/comment_test.rb
workarea-core-3.5.13 test/models/workarea/comment_test.rb
workarea-core-3.4.34 test/models/workarea/comment_test.rb
workarea-core-3.5.12 test/models/workarea/comment_test.rb
workarea-core-3.4.33 test/models/workarea/comment_test.rb
workarea-core-3.5.11 test/models/workarea/comment_test.rb
workarea-core-3.5.10 test/models/workarea/comment_test.rb
workarea-core-3.4.32 test/models/workarea/comment_test.rb
workarea-core-3.5.9 test/models/workarea/comment_test.rb
workarea-core-3.4.31 test/models/workarea/comment_test.rb
workarea-core-3.5.8 test/models/workarea/comment_test.rb
workarea-core-3.4.30 test/models/workarea/comment_test.rb
workarea-core-3.5.7 test/models/workarea/comment_test.rb
workarea-core-3.4.29 test/models/workarea/comment_test.rb
workarea-core-3.5.6 test/models/workarea/comment_test.rb
workarea-core-3.4.28 test/models/workarea/comment_test.rb
workarea-core-3.5.5 test/models/workarea/comment_test.rb