Sha256: c46887c20ef6ba316c00e23efb060c8e79d1def1fb148c6bb68376b98c06415a

Contents?: true

Size: 599 Bytes

Versions: 1

Compression:

Stored size: 599 Bytes

Contents

# -*- encoding : utf-8 -*-
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

require 'codeclimate-test-reporter'
CodeClimate::TestReporter.start

require 'rspec/its'

RSpec.configure do |config|
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end

  config.mock_with :rspec do |c|
    c.syntax = :expect
  end
end

# Helper to simulate Server Responses. Parses the fixtures in the spec folder
def server_response(path)
  JSON.parse(File.readlines("spec/fixtures/#{path}.json").join)
end

ARANGO_HOST = 'http://localhost:8529'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ashikawa-core-0.11.0 spec/unit/spec_helper.rb