Sha256: 54b427c0bf15704812ba99a3758f2fd62444dc1acd5a7e4312c4882cdf5868f4

Contents?: true

Size: 715 Bytes

Versions: 5

Compression:

Stored size: 715 Bytes

Contents

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))

require 'rubygems'
require 'bundler'

begin
  Bundler.setup(:default, :test)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end

require 'vcr'
require 'test/unit'
require 'shoulda'
require 'quaderno-ruby'

VCR.configure do |c|
  c.cassette_library_dir = 'test/fixtures/quaderno_cassettes'
  c.ignore_localhost = false
  c.hook_into :fakeweb
end

TEST_URL = 'http://development.lvh.me:3000/api/'
TEST_KEY = 'sk_test_B7xXrTspfeGukQqGN1pK'
OLDEST_SUPPORTED_API_VERSION = 20160602

class Test::Unit::TestCase
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
quaderno-1.11.2 test/helper.rb
quaderno-1.11.1 test/helper.rb
quaderno-1.11.0 test/helper.rb
quaderno-1.10.0 test/helper.rb
quaderno-1.9.2 test/helper.rb