Commit 9008913de7f7f559aa7708fa4f2b7bdf34552ea7
Committed by
Diego Camarinha
1 parent
4ef5e2cb
Exists in
colab
and in
4 other branches
Factory base_tool.rb renamed to metric_collector.rb
Showing
2 changed files
with
6 additions
and
6 deletions
Show diff stats
spec/factories/base_tools.rb
... | ... | @@ -1,6 +0,0 @@ |
1 | -FactoryGirl.define do | |
2 | - factory :metric_collector, class: KalibroGatekeeperClient::Entities::MetricCollector do | |
3 | - name 'Analizo' | |
4 | - supported_metrics { { "total_abstract_classes" => FactoryGirl.build(:metric).to_hash, "loc" => FactoryGirl.build(:loc).to_hash } } | |
5 | - end | |
6 | -end |
... | ... | @@ -0,0 +1,6 @@ |
1 | +FactoryGirl.define do | |
2 | + factory :metric_collector, class: KalibroGatekeeperClient::Entities::MetricCollector do | |
3 | + name 'Analizo' | |
4 | + supported_metrics { { "total_abstract_classes" => FactoryGirl.build(:metric).to_hash, "loc" => FactoryGirl.build(:loc).to_hash } } | |
5 | + end | |
6 | +end | ... | ... |