Sha256: e864adc258568ed0b5998bbb4231b8c839408252811f3c58cfc7d9bb8f8bb271

Contents?: true

Size: 435 Bytes

Versions: 20

Compression:

Stored size: 435 Bytes

Contents

require 'rubygems'
require 'bundler'
Bundler.require :test

require 'simplecov'
SimpleCov.start

require 'minitest/autorun'
require 'totter'

# Support files
Dir["#{File.expand_path(File.dirname(__FILE__))}/support/*.rb"].each do |file|
  require file
end

# VCR
VCR.configure do |c|
  c.cassette_library_dir = 'test/cassettes'
  c.hook_into :webmock
end

class Totter::TestCase < MiniTest::Unit::TestCase
  include ::ClientMacros
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
totter-0.3.4 test/test_helper.rb
totter-0.3.3 test/test_helper.rb
totter-0.3.2 test/test_helper.rb
totter-0.3.1 test/test_helper.rb
totter-0.3.0 test/test_helper.rb
totter-0.2.14 test/test_helper.rb
totter-0.2.13 test/test_helper.rb
totter-0.2.12 test/test_helper.rb
totter-0.2.11 test/test_helper.rb
totter-0.2.10 test/test_helper.rb
totter-0.2.9 test/test_helper.rb
totter-0.2.8 test/test_helper.rb
totter-0.2.7 test/test_helper.rb
totter-0.2.6 test/test_helper.rb
totter-0.2.5 test/test_helper.rb
totter-0.2.4 test/test_helper.rb
totter-0.2.3 test/test_helper.rb
totter-0.2.2 test/test_helper.rb
totter-0.2.1 test/test_helper.rb
totter-0.2.0 test/test_helper.rb