ruby-lol 0.9.1 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,19 +0,0 @@
1
- require "lol"
2
- require "spec_helper"
3
-
4
- include Lol
5
-
6
- describe AggregatedStatistic do
7
- it_behaves_like 'Lol model' do
8
- let(:valid_attributes) { { id: 1 } }
9
- end
10
-
11
- %w(id name count).each do |attribute|
12
- describe "#{attribute} attribute" do
13
- it_behaves_like 'plain attribute' do
14
- let(:attribute) { attribute }
15
- let(:attribute_value) { 'asd' }
16
- end
17
- end
18
- end
19
- end
@@ -1,19 +0,0 @@
1
- require "spec_helper"
2
- require "lol"
3
-
4
- include Lol
5
-
6
- describe ChampionStatistic do
7
- it_behaves_like 'Lol model' do
8
- let(:valid_attributes) { { id: 1 } }
9
- end
10
-
11
- %w(id name c value).each do |attribute|
12
- describe "#{attribute} attribute" do
13
- it_behaves_like 'plain attribute' do
14
- let(:attribute) { attribute }
15
- let(:attribute_value) { 'asd' }
16
- end
17
- end
18
- end
19
- end