Sha256: dbde5dff392125311d08ca19443bacffdaa37eddbdd5268f9cbf15833a2fe94e

Contents?: true

Size: 772 Bytes

Versions: 5

Compression:

Stored size: 772 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.username = "init_user"
  Leadtune::Config.password = "init_secret"
  Leadtune::Config.timeout = 7
  Leadtune::Config.organization = "init_org"
  Leadtune::Config.leadtune_host = "http://localhost.init"
end

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
leadtune-0.0.7 spec/spec_helper.rb
leadtune-0.0.6 spec/spec_helper.rb
leadtune-0.0.5 spec/spec_helper.rb
leadtune-0.0.4 spec/spec_helper.rb
leadtune-0.0.3 spec/spec_helper.rb