Sha256: 26be032a0403f890cbdc896bcc627b797241e6bfe8106b3bf92b335c38cbe304

Contents?: true

Size: 831 Bytes

Versions: 8

Compression:

Stored size: 831 Bytes

Contents

# frozen_string_literal: true

require "spec_helper"

describe VotableVoter do
  it_behaves_like "a votable_model" do
    let (:voter)         { create(:votable_voter, name: "i can vote!") }
    let (:voter2)        { create(:votable_voter, name: "a new person") }
    let (:voter3)        { create(:voter, name: "another person") }
    let (:votable)       { create(:votable_voter, name: "a voting model") }
    let (:votable_cache) { create(:votable_cache, name: "voting model with cache") }
  end

  it_behaves_like "a voter_model" do
    let (:voter)    { create(:votable_voter, name: "i can vote!") }
    let (:voter2)   { create(:votable_voter, name: "a new person") }
    let (:votable)  { create(:votable_voter, name: "a voting model") }
    let (:votable2) { create(:votable_voter, name: "a 2nd voting model") }
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
acts_as_votable-0.14.0 spec/votable_voter_spec.rb
acts_as_votable-0.13.2 spec/votable_voter_spec.rb
acts_as_votable-0.13.1 spec/votable_voter_spec.rb
acts_as_votable-0.13.0 spec/votable_voter_spec.rb
acts_as_votable-0.12.1 spec/votable_voter_spec.rb
acts_as_votable-0.12.0 spec/votable_voter_spec.rb
acts_as_votable-0.11.1 spec/votable_voter_spec.rb
acts_as_votable-0.11.0 spec/votable_voter_spec.rb