当使用相同的测试成功覆盖 (100%) 其他文件时,SimpleCov 会忽略一些文件 (0%)。
我使用框架的测试工具(Rails 5.1.4)运行我的测试。
这是我的test_helper.rb
文件。
require 'simplecov'
# save to CircleCI's artifacts directory if we're on CircleCI
if ENV['CIRCLE_ARTIFACTS']
dir = File.join(ENV['CIRCLE_ARTIFACTS'], 'coverage')
SimpleCov.coverage_dir(dir)
end
SimpleCov.start 'rails'
ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'
这是SimpleCov成功覆盖 (100%) 的文件Connection.types
,其中包含:
class Connection < ApplicationRecord
validates :type_of, inclusion: { in: proc { Connection.types.map(&:to_s) } }
TYPES = %i[
friend
industry
investor
].freeze
belongs_to :project
belongs_to :user
def self.types
TYPES
end
end
这是SimpleCov未能成功覆盖 (0%) 的文件Kpi.types
:
class Kpi < ApplicationRecord
REGEX = {
float: "^\d+(\.?\d)?$"
}.freeze
TYPES = [
{ id: :buyers, name: 'Number of buyers', unit: 'users', example: '1000', regex: :float },
{ id: :sellers, name: 'Number of sellers', unit: 'users', example: '1000', regex: :float },
].freeze
belongs_to :project
def self.types
TYPES
end
end
我没有看到这里的模式......你呢?