Sha256: a4a4e6b01753d2d86375e5f3ceec2ddcdbfc1d11fd1564a9dc486468afcf315d

Contents?: true

Size: 723 Bytes

Versions: 2

Compression:

Stored size: 723 Bytes

Contents

# LeadTune API Ruby Gem
#
# http://github.com/leadtune/leadtune-ruby
# Eric Wollesen (mailto:devs@leadtune.com)
# Copyright 2010 LeadTune LLC

require "ruby-debug"
require "rspec"
require File.dirname(__FILE__) + "/../lib/leadtune"

require 'webmock/rspec'

RSpec.configure do |config|
  config.include WebMock
end

def setup_initializer
  Leadtune::Config.api_key = "DeadB33fDeadB33fDeadB33fDeadB33fDeadB33f"
  Leadtune::Config.timeout = 7
  Leadtune::Config.organization = "init_org"
  Leadtune::Config.leadtune_host = "http://localhost.init"
end

def teardown_initializer
  Leadtune::Config.api_key = nil
  Leadtune::Config.timeout = nil
  Leadtune::Config.organization = nil
  Leadtune::Config.leadtune_host = nil
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
leadtune-0.0.9 spec/spec_helper.rb
leadtune-0.0.8 spec/spec_helper.rb