Sha256: a9f9ba3140b96dbcaa9d973bbed59a35a5e1a9fd7aa667a2ab6c340fa861c06d

Contents?: true

Size: 558 Bytes

Versions: 2

Compression:

Stored size: 558 Bytes

Contents

require 'bundler/setup'

$:.push(File.expand_path("../../lib", __FILE__))

require 'rspec'
require 'veritrans'
require 'veritrans/cli'
require 'veritrans/events'
require 'rails'
require 'webmock/rspec'
require 'vcr'

VCR.configure do |c|
  c.cassette_library_dir = 'spec/fixtures'
  c.hook_into :webmock # or :fakeweb
  #c.debug_logger = STDOUT
end

RSpec.configure do |config|
  config.mock_with :rspec

  config.expect_with :rspec do |c|
    c.syntax = [:should, :expect]
  end

  config.mock_with :rspec do |c|
    c.syntax = [:should, :expect]
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
veritrans-2.0.0 spec/spec_helper.rb
veritrans-2.0.0beta spec/spec_helper.rb