Sha256: 9bea5f1ead641024685040a39b88286ba1fcfab09e4ebe7d9f5180f28c3ed1ba

Contents?: true

Size: 384 Bytes

Versions: 1

Compression:

Stored size: 384 Bytes

Contents

# simplecov must come first
require 'simplecov'
SimpleCov.command_name 'RSpec'

require_relative '../../lib/basic101'

# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
end

glob = File.expand_path('support/**/*.rb', __dir__)
Dir[glob].sort.each do |path|
  require path
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
basic101-0.1.0 test/spec/spec_helper.rb