Sha256: 10109361020dea9c496b222bf3b186941070bd0b2c47f596178348f4033ff953

Contents?: true

Size: 912 Bytes

Versions: 23

Compression:

Stored size: 912 Bytes

Contents

require 'simplecov'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
  SimpleCov::Formatter::HTMLFormatter,
]
SimpleCov.start do
  add_filter "/spec/"
end

require 'discourse_api'
require 'rspec'
require 'webmock/rspec'

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

WebMock.disable_net_connect!(:allow_localhost => true)

def a_delete(path)
  a_request(:delete, path)
end

def a_get(path)
  a_request(:get, path)
end

def a_post(path)
  a_request(:post, path)
end

def a_put(path)
  a_request(:put, path)
end

def stub_delete(path)
  stub_request(:delete, path)
end

def stub_get(path)
  stub_request(:get, path)
end

def stub_post(path)
  stub_request(:post, path)
end

def stub_put(path)
  stub_request(:put, path)
end

def fixture_path
  File.expand_path("../fixtures", __FILE__)
end

def fixture(file)
  File.new(fixture_path + '/' + file)
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
discourse_api-0.9.1 spec/spec_helper.rb
discourse_api-0.9.0 spec/spec_helper.rb
discourse_api-0.8.1 spec/spec_helper.rb
discourse_api-0.8.0 spec/spec_helper.rb
discourse_api-0.7.0 spec/spec_helper.rb
discourse_api-0.6.2 spec/spec_helper.rb
discourse_api-0.6.1 spec/spec_helper.rb
discourse_api-0.6.0 spec/spec_helper.rb
discourse_api-0.5.1 spec/spec_helper.rb
discourse_api-0.5.0 spec/spec_helper.rb
discourse_api-0.4.4 spec/spec_helper.rb
discourse_api-0.4.3 spec/spec_helper.rb
discourse_api-0.4.2 spec/spec_helper.rb
discourse_api-0.4.1 spec/spec_helper.rb
discourse_api-0.4.0 spec/spec_helper.rb
discourse_api-0.3.6 spec/spec_helper.rb
discourse_api-0.3.0 spec/spec_helper.rb
discourse_api-0.2.9 spec/spec_helper.rb
discourse_api-0.2.8 spec/spec_helper.rb
discourse_api-0.2.7 spec/spec_helper.rb