Sha256: b6b841fc71230a0cf3d4613b25e3992d3912504cf2bb1d38a8adcbb988202fa3

Contents?: true

Size: 726 Bytes

Versions: 1

Compression:

Stored size: 726 Bytes

Contents

require 'bundler'
require 'killbill'

%w(
  MockAccountUserApi
  MockEntitlementUserApi
).each do |api|
  begin
    java_import "com.ning.billing.mock.api.#{api}"
  rescue LoadError
  end
end

require 'rspec'

RSpec.configure do |config|
  config.color_enabled = true
  config.tty = true
  config.formatter = 'documentation'
end

begin
  require 'securerandom'
  SecureRandom.uuid
rescue LoadError, NoMethodError
  # See http://jira.codehaus.org/browse/JRUBY-6176
  module SecureRandom
    def self.uuid
      ary = self.random_bytes(16).unpack("NnnnnN")
      ary[2] = (ary[2] & 0x0fff) | 0x4000
      ary[3] = (ary[3] & 0x3fff) | 0x8000
      "%08x-%04x-%04x-%04x-%04x%08x" % ary
    end unless respond_to?(:uuid)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
killbill-1.0.0 spec/spec_helper.rb