Sha256: cf19af2d04d2dd5b1b1d21d7cf79567485d6ad1bb441a20ced66a3d44f257ef2

Contents?: true

Size: 667 Bytes

Versions: 11

Compression:

Stored size: 667 Bytes

Contents

# encoding: utf-8
require "bundler/setup"

ENV['MOCK'] ||= 'on'
require "pry"
require 'growthforecast-client'
require 'webmock/rspec'
require 'cgi'
WebMock.allow_net_connect! if ENV['MOCK'] == 'off'

ROOT = File.dirname(__FILE__)
Dir[File.expand_path("support/**/*.rb", ROOT)].each {|f| require f }

RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
end

def u(str)
  ::CGI.unescape(str.gsub('%20', '+')) if str
end

def e(str)
  ::CGI.escape(str).gsub('+', '%20') if str
end

def base_uri
  'http://localhost:5125'
end

def client
  GrowthForecast::Client.new(base_uri)
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
growthforecast-client-0.82.5 spec/spec_helper.rb
growthforecast-client-0.82.4 spec/spec_helper.rb
growthforecast-client-0.82.3 spec/spec_helper.rb
growthforecast-client-0.82.2 spec/spec_helper.rb
growthforecast-client-0.82.1 spec/spec_helper.rb
growthforecast-client-0.80.2 spec/spec_helper.rb
growthforecast-client-0.80.1 spec/spec_helper.rb
growthforecast-client-0.80.0 spec/spec_helper.rb
growthforecast-client-0.62.4 spec/spec_helper.rb
growthforecast-client-0.62.3 spec/spec_helper.rb
growthforecast-client-0.62.0 spec/spec_helper.rb