Sha256: 91f892668a2e8c17c53951da01e613c1d2798ca3dd0250dd942f99bc8a15dcb4

Contents?: true

Size: 1.03 KB

Versions: 5

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true

require 'rails_helper'
require 'support/shared_context/with_database_records'

RSpec.describe Voting::Extension, ':votes' do
  include_context 'with_database_records'

  context 'with no scope' do
    it 'returns votes that this resource received' do
      expect(comment_1.votes).to match_array [vote_1, vote_2, vote_3]
    end
  end

  context 'with scope' do
    it 'returns scoped votes that this resource received' do
      expect(comment_1.votes(scope: category)).to match_array [vote_7, vote_8]
    end
  end

  context 'when destroy author' do
    it 'destroys votes of that author' do
      expect(Voting::Vote.where(author: author_1).count).to eq 3

      author_1.destroy!

      expect(Voting::Vote.where(author: author_1).count).to eq 0
    end
  end

  context 'when destroy resource' do
    it 'destroys votes of that resource' do
      expect(Voting::Vote.where(resource: comment_1).count).to eq 5

      comment_1.destroy!

      expect(Voting::Vote.where(resource: comment_1).count).to eq 0
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
voting-0.5.0 spec/models/extension/votes_spec.rb
voting-0.4.0 spec/models/extension/votes_spec.rb
voting-0.3.0 spec/models/extension/votes_spec.rb
voting-0.2.0 spec/models/extension/votes_spec.rb
voting-0.1.0 spec/models/extension/votes_spec.rb