Sha256: 0a0d578c9fd9a4f4ccc6191af8e75e1ee7a3fdafd9f9a182b3cd95fd6a40ac89

Contents?: true

Size: 582 Bytes

Versions: 1

Compression:

Stored size: 582 Bytes

Contents

require 'simplecov'
SimpleCov.start

require 'rspec'
require 'angellist_api'
require 'timecop'

RSpec.configure do |config|
  config.mock_with :rspec do |mocks|
    mocks.syntax = [:should, :expect]
  end

  config.filter_run :focus => true
  config.run_all_when_everything_filtered = true
  config.color = true

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

Dir['./spec/support/**/*.rb'].each { |f| require f }

ROLES = %w[founder employee current_investor past_investor advisor mentor
           incubator referrer board_member customer]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
angellist_api-1.1.0 spec/spec_helper.rb