Sha256: 276e95e605b3730d6f9e66cc2c63ce134372bce619a6e6fdbd9bdc4e94dbef1a
Contents?: true
Size: 577 Bytes
Versions: 3
Compression:
Stored size: 577 Bytes
Contents
require "spec_helper" require "lol" include Lol describe ChampionMastery do it_behaves_like 'Lol model' do let(:valid_attributes) { { champion_id: 1 } } end %w(champion_id champion_level champion_points champion_points_since_last_level champion_points_until_next_level chest_granted highest_grade last_play_time player_id tokens_earned).each do |attribute| describe "#{attribute} attribute" do it_behaves_like 'plain attribute' do let(:attribute) { attribute } let(:attribute_value) { 'asd' } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-lol-0.12.2 | spec/lol/champion_mastery_spec.rb |
ruby-lol-0.12.1 | spec/lol/champion_mastery_spec.rb |
ruby-lol-0.12.0 | spec/lol/champion_mastery_spec.rb |