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.27 test/models/workarea/comment_test.rb
workarea-core-3.5.26 test/models/workarea/comment_test.rb
workarea-core-3.4.45 test/models/workarea/comment_test.rb
workarea-core-3.5.25 test/models/workarea/comment_test.rb
workarea-core-3.5.23 test/models/workarea/comment_test.rb
workarea-core-3.4.44 test/models/workarea/comment_test.rb
workarea-core-3.5.22 test/models/workarea/comment_test.rb
workarea-core-3.4.43 test/models/workarea/comment_test.rb
workarea-core-3.5.21 test/models/workarea/comment_test.rb
workarea-core-3.4.42 test/models/workarea/comment_test.rb
workarea-core-3.5.20 test/models/workarea/comment_test.rb
workarea-core-3.4.41 test/models/workarea/comment_test.rb
workarea-core-3.5.19 test/models/workarea/comment_test.rb
workarea-core-3.4.40 test/models/workarea/comment_test.rb
workarea-core-3.5.18 test/models/workarea/comment_test.rb
workarea-core-3.4.39 test/models/workarea/comment_test.rb
workarea-core-3.5.17 test/models/workarea/comment_test.rb
workarea-core-3.4.38 test/models/workarea/comment_test.rb
workarea-core-3.5.16 test/models/workarea/comment_test.rb
workarea-core-3.4.37 test/models/workarea/comment_test.rb