Sha256: 09a1c422b7f3434d4c6d1e8267cc3fbd91200c2b0123db6dbc6c71fe5947415f

Contents?: true

Size: 670 Bytes

Versions: 20

Compression:

Stored size: 670 Bytes

Contents

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'minitest/unit'
require 'mocha'


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

require 'voyager_api'

class MiniTest::Unit::TestCase
end

class HoldingsTestCase < MiniTest::Unit::TestCase
  include Voyager::Holdings

  def load_fixture(filename)
    Collection.new(File.read(File.join(File.dirname(__FILE__),  "fixtures", filename)))
  end
end
MiniTest::Unit.autorun

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
voyager_api-0.3.11 test/helper.rb
voyager_api-0.3.10 test/helper.rb
voyager_api-0.3.9 test/helper.rb
voyager_api-0.3.8 test/helper.rb
voyager_api-0.3.7 test/helper.rb
voyager_api-0.3.6 test/helper.rb
voyager_api-0.3.5 test/helper.rb
voyager_api-0.3.4 test/helper.rb
voyager_api-0.3.3 test/helper.rb
voyager_api-0.3.2 test/helper.rb
voyager_api-0.2.5 test/helper.rb
voyager_api-0.3.1 test/helper.rb
voyager_api-0.3.0 test/helper.rb
voyager_api-0.2.4 test/helper.rb
voyager_api-0.2.3 test/helper.rb
voyager_api-0.2.2 test/helper.rb
voyager_api-0.2.0 test/helper.rb
voyager_api-0.1.2 test/helper.rb
voyager_api-0.1.1 test/helper.rb
voyager_api-0.1.0 test/helper.rb