diff --git a/spec/models/order_article_spec.rb b/spec/models/order_article_spec.rb index f8f05c7b..32b280dc 100644 --- a/spec/models/order_article_spec.rb +++ b/spec/models/order_article_spec.rb @@ -4,10 +4,6 @@ describe OrderArticle do let(:order) { create :order, article_count: 1 } let(:oa) { order.order_articles.first } - it 'foo' do - oa.update_article_and_price!() - end - it 'is not ordered by default' do expect(OrderArticle.ordered.count).to eq 0 end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index fbf281da..6cd41ded 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -68,15 +68,6 @@ if ENV['COVERAGE'] == 'lcov' SimpleCov.formatters = SimpleCov::Formatter::LcovFormatter end -if ENV['COVERAGE'] == 'html' - require 'simplecov-lcov' - SimpleCov::Formatter::LcovFormatter.config do |c| - c.report_with_single_file = true - c.single_report_path = 'coverage/lcov.html' - end - SimpleCov.formatters = SimpleCov::Formatter::HTMLFormatter -end - # include default foodsoft scope in urls, so that *_path works # https://github.com/rspec/rspec-rails/issues/255 class ActionDispatch::Routing::RouteSet