ruby-lol 0.9.1 → 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -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