Sha256: 26cfee9210314f44578f14477b2b3e03967328500aae80746c09946423df750f

Contents?: true

Size: 599 Bytes

Versions: 6

Compression:

Stored size: 599 Bytes

Contents

require "spec_helper"
require "lol"

include Lol

describe RuneSlot do
  it_behaves_like 'Lol model' do
    let(:valid_attributes) { { id: 1 } }
  end

  it_behaves_like "plain attribute" do
    let(:attribute) { "id" }
    let(:attribute_value) { "asd" }
  end

  describe "#rune" do
    let(:fixture) { load_fixture("summoner-runes", "v1.3", "get") }
    let(:rune) { fixture["30743211"]["pages"].first["slots"].first["rune"] }

    subject { RuneSlot.new fixture["30743211"]["pages"].first["slots"].first }

    it "is a Rune object" do
      expect(subject.rune).to be_a(Rune)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby-lol-0.9.12 spec/lol/rune_slot_spec.rb
ruby-lol-0.9.11 spec/lol/rune_slot_spec.rb
ruby-lol-0.9.10 spec/lol/rune_slot_spec.rb
ruby-lol-0.9.9 spec/lol/rune_slot_spec.rb
ruby-lol-0.9.8 spec/lol/rune_slot_spec.rb
ruby-lol-0.9.7 spec/lol/rune_slot_spec.rb