mirror of
https://github.com/drapergem/draper
synced 2023-03-27 23:21:17 -04:00
e870045f5a
Add `simplecov` now become simpler, as it now support merging results for multiple test suites. ## Testing Results ![image](https://user-images.githubusercontent.com/233115/54475149-e89ce980-4828-11e9-89a6-b6d446d4ac06.png) ## To-Dos - [x] Display test coverage result to `codeclimate` (I can do this) ## References * [SimpleCov Readme of Merging Results](https://github.com/colszowka/simplecov#merging-results) * [Deprecated Pull Request](https://github.com/drapergem/draper/pull/769)
50 lines
1.3 KiB
Ruby
50 lines
1.3 KiB
Ruby
require 'simplecov'
|
|
SimpleCov.start do
|
|
add_filter 'spec'
|
|
add_group 'Draper', 'lib/draper'
|
|
add_group 'Generators', 'lib/generators'
|
|
end
|
|
|
|
require 'bundler/setup'
|
|
require 'draper'
|
|
require 'action_controller'
|
|
require 'action_controller/test_case'
|
|
|
|
RSpec.configure do |config|
|
|
config.expect_with(:rspec) {|c| c.syntax = :expect}
|
|
config.order = :random
|
|
config.mock_with :rspec do |mocks|
|
|
mocks.yield_receiver_to_any_instance_implementation_blocks = true
|
|
end
|
|
end
|
|
|
|
class Model; include Draper::Decoratable; end
|
|
|
|
class Product < Model; end
|
|
class SpecialProduct < Product; end
|
|
class Other < Model; end
|
|
class Person < Model; end
|
|
class Child < Person; end
|
|
class ProductDecorator < Draper::Decorator; end
|
|
class ProductsDecorator < Draper::CollectionDecorator; end
|
|
|
|
class OtherDecorator < Draper::Decorator; end
|
|
|
|
module Namespaced
|
|
class Product < Model; end
|
|
class ProductDecorator < Draper::Decorator; end
|
|
ProductsDecorator = Class.new(Draper::CollectionDecorator)
|
|
class OtherDecorator < Draper::Decorator; end
|
|
end
|
|
|
|
ApplicationController = Class.new(ActionController::Base)
|
|
CustomController = Class.new(ActionController::Base)
|
|
|
|
# After each example, revert changes made to the class
|
|
def protect_class(klass)
|
|
before { stub_const klass.name, Class.new(klass) }
|
|
end
|
|
|
|
def protect_module(mod)
|
|
before { stub_const mod.name, mod.dup }
|
|
end
|