Sha256: 96835cbff41e0dce788f1f1bd391da3f9d67d05b350c4c11ab5c2bd6a0c02815

Contents?: true

Size: 1.16 KB

Versions: 11

Compression:

Stored size: 1.16 KB

Contents

unless ENV['CI']
  require 'simplecov'
  SimpleCov.start do
    add_filter "/spec"
  end
end
require 'octokit'
require 'rspec'
require 'webmock/rspec'

def a_delete(url)
  a_request(:delete, github_url(url))
end

def a_get(url)
  a_request(:get, github_url(url))
end

def a_patch(url)
  a_request(:patch, github_url(url))
end

def a_post(url)
  a_request(:post, github_url(url))
end

def a_put(url)
  a_request(:put, github_url(url))
end

def stub_delete(url)
  stub_request(:delete, github_url(url))
end

def stub_get(url)
  stub_request(:get, github_url(url))
end

def stub_patch(url)
  stub_request(:patch, github_url(url))
end

def stub_post(url)
  stub_request(:post, github_url(url))
end

def stub_put(url)
  stub_request(:put, github_url(url))
end

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

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

def github_url(url)
  if url =~ /^http/
    url
  elsif @client && @client.authenticated?
    "https://pengwynn%2Ftoken:OU812@api.github.com#{url}"
  elsif @client && @client.oauthed?
    "https://api.github.com#{url}?access_token=#{@client.oauth_token}"
  else
    "https://api.github.com#{url}"
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
octokit-1.2.1 spec/helper.rb
octokit-1.2.0 spec/helper.rb
octokit-1.1.1 spec/helper.rb
octokit-1.1.0 spec/helper.rb
octokit-1.0.7 spec/helper.rb
octokit-1.0.6 spec/helper.rb
octokit-1.0.5 spec/helper.rb
octokit-1.0.4 spec/helper.rb
octokit-1.0.3 spec/helper.rb
octokit-1.0.2 spec/helper.rb
octokit-1.0.1 spec/helper.rb