Sha256: 59538bb6e8270d92ff022e36259b562d24835753f2e8cfc2861f00348c8f5656

Contents?: true

Size: 520 Bytes

Versions: 3

Compression:

Stored size: 520 Bytes

Contents

if ENV['COVERAGE']
  require 'simplecov'
  SimpleCov.start
end

Dir.glob( File.join( File.dirname(__FILE__), 'fixtures/**/*.rb' ) ).each{|f| require(f) }
$:.unshift File.join(File.dirname(__FILE__), *%w[.. lib])

require "rspec"
require "quandl/format"
require "config/client"
require "config/logger"
require 'pry'

# Replace Quandl::Logger with Spec::Logger that will raise errors sent to #error
# This allows us to easily test error assertions in spec/lib/quandl/format/errors_spec.rb
Quandl::Logger.use(Spec::Logger)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
quandl_format-0.1.2 spec/spec_helper.rb
quandl_format-0.1.1 spec/spec_helper.rb
quandl_format-0.1.0 spec/spec_helper.rb