Sha256: df581336ab9c4b5c5047f03532b14320ffcfc5ca53f6af2b030c55031f45a26a

Contents?: true

Size: 1001 Bytes

Versions: 11

Compression:

Stored size: 1001 Bytes

Contents

require "spec_helper"

module SocialNetworking
  module Reports
    RSpec.describe Comment do
      fixtures :all

      def data
        @data ||= SocialNetworking::Reports::Comment.all
      end

      describe ".all" do
        context "when no comments made" do
          it "returns an empty array" do
            SocialNetworking::Comment.destroy_all
            expect(data).to be_empty
          end
        end

        context "when comments made" do
          it "returns accurate summaries" do
            expect(data.count).to eq 1
            participant = participants(:participant1)
            comment = SocialNetworking::Comment.first
            item = (comment.item.try(:item) || comment.item)
            expect(data).to include(
              participant_id: participant.study_id,
              occurred_at: comment.created_at.iso8601,
              item_type: item.class.to_s,
              text: comment.text
            )
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
social_networking-0.11.8 spec/models/social_networking/reports/comment_report_spec.rb
social_networking-0.11.7 spec/models/social_networking/reports/comment_report_spec.rb
social_networking-0.11.6 spec/models/social_networking/reports/comment_report_spec.rb
social_networking-0.11.5 spec/models/social_networking/reports/comment_report_spec.rb
social_networking-0.11.4 spec/models/social_networking/reports/comment_report_spec.rb
social_networking-0.11.3 spec/models/social_networking/reports/comment_report_spec.rb
social_networking-0.11.2 spec/models/social_networking/reports/comment_report_spec.rb
social_networking-0.11.1 spec/models/social_networking/reports/comment_report_spec.rb
social_networking-0.11.0 spec/models/social_networking/reports/comment_report_spec.rb
social_networking-0.10.0 spec/models/social_networking/reports/comment_report_spec.rb
social_networking-0.9.3 spec/models/social_networking/reports/comment_report_spec.rb