1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# CVSS-Suite, a Ruby gem to manage the CVSS vector
#
# This work is licensed under the terms of the MIT license.
# See the LICENSE.md file in the top-level directory.
require 'simplecov'
SimpleCov.start do
add_filter '/spec/'
end
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)
require 'cvss_suite'
require 'rspec/its'
require 'shared_examples'
require 'shared_examples_4_0_and_later'
RSpec.configure do |config|
config.expect_with :rspec do |c|
c.syntax = :expect
end
config.example_status_persistence_file_path = 'spec/.rspec_status'
end
|