Sha256: bed570d204216cee789af53b4e0898a1bed76b03924135bf5d4fece0702bb1fd
Contents?: true
Size: 544 Bytes
Versions: 5
Compression:
Stored size: 544 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 if ENV['COVERAGE'] == 'true' require 'simplecov' SimpleCov.start do command_name 'spec:unit' add_filter 'config' add_filter 'spec' minimum_coverage 100 end end $LOAD_PATH << 'lib' require 'ltx' require 'devtools/spec_helper' # require spec support files and shared behavior Dir[File.expand_path('../{support,shared}/**/*.rb', __FILE__)].each do |file| require file end RSpec.configure do |config| config.include(SpecHelper) config.mock_framework = :rspec end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
ltx-1.2.0 | spec/spec_helper.rb |
ltx-1.1.0 | spec/spec_helper.rb |
ltx-1.0.2 | spec/spec_helper.rb |
ltx-1.0.1 | spec/spec_helper.rb |
ltx-1.0.0 | spec/spec_helper.rb |