Sha256: 22490cf03c8f05447c15c6efe257e9bc97daabce12c44bcb8d40fe0d274ac2a0

Contents?: true

Size: 622 Bytes

Versions: 1

Compression:

Stored size: 622 Bytes

Contents

require 'webmock/rspec'

if ENV['COVERAGE']
  require "simplecov"

  SimpleCov.start :test_frameworks do
    add_filter "/vendor/bundle/"
  end
end

require 'zaim'

# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir[File.expand_path("./support/**/*.rb", File.dirname(__FILE__))].each {|f| require f}

RSpec.configure do |config|
  # == Mock Framework
  #
  # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
  #
  # config.mock_with :mocha
  # config.mock_with :flexmock
  # config.mock_with :rr
  # config.mock_with :rspec
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
zaim-0.0.1 spec/spec_helper.rb