Sha256: f5f5fa87390f04c3d4f7bb8834e3ad1da4a2c08ddaded8dc411356a9af553fad
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
require 'rspec' require 'webmock/rspec' require File.expand_path('../../lib/gitlab', __FILE__) def load_fixture(name) File.new(File.dirname(__FILE__) + "/fixtures/#{name}.json") end RSpec.configure do |config| config.before(:all) do Gitlab.endpoint = 'https://api.example.com' Gitlab.private_token = 'secret' end end # GET def stub_get(path, fixture) stub_request(:get, "#{Gitlab.endpoint}#{path}"). with(:query => {:private_token => Gitlab.private_token}). to_return(:body => load_fixture(fixture)) end def a_get(path) a_request(:get, "#{Gitlab.endpoint}#{path}"). with(:query => {:private_token => Gitlab.private_token}) end # POST def stub_post(path, fixture, status_code=200) stub_request(:post, "#{Gitlab.endpoint}#{path}"). with(:query => {:private_token => Gitlab.private_token}). to_return(:body => load_fixture(fixture), :status => status_code) end def a_post(path) a_request(:post, "#{Gitlab.endpoint}#{path}"). with(:query => {:private_token => Gitlab.private_token}) end # PUT def stub_put(path, fixture) stub_request(:put, "#{Gitlab.endpoint}#{path}"). with(:query => {:private_token => Gitlab.private_token}). to_return(:body => load_fixture(fixture)) end def a_put(path) a_request(:put, "#{Gitlab.endpoint}#{path}"). with(:query => {:private_token => Gitlab.private_token}) end # DELETE def stub_delete(path, fixture) stub_request(:delete, "#{Gitlab.endpoint}#{path}"). with(:query => {:private_token => Gitlab.private_token}). to_return(:body => load_fixture(fixture)) end def a_delete(path) a_request(:delete, "#{Gitlab.endpoint}#{path}"). with(:query => {:private_token => Gitlab.private_token}) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gitlab-3.0.0 | spec/spec_helper.rb |