Sha256: 079b2ffab566260d54ad61723fbe2d24853eb66e94d6b915464dc2a98c914909
Contents?: true
Size: 477 Bytes
Versions: 1
Compression:
Stored size: 477 Bytes
Contents
require 'big_ml' require 'rspec' require 'vcr' BigML.configure do |c| c.username = 'foo' c.api_key = 'bar' c.dev_mode = true end VCR.configure do |c| c.cassette_library_dir = 'spec/vcr_cassettes' c.configure_rspec_metadata! c.hook_into :fakeweb c.filter_sensitive_data('<USERNAME>') { BigML.username } c.filter_sensitive_data('<API_KEY>') { BigML.api_key } end RSpec.configure do |config| config.expect_with :rspec do |c| c.syntax = :expect end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
big_ml-0.1.3 | spec/spec_helper.rb |