Sha256: 117771964c89372ba5579539c89efd4eddac014b5854030e27f7392af06b7fcf

Contents?: true

Size: 565 Bytes

Versions: 5

Compression:

Stored size: 565 Bytes

Contents

$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'ruby-debug'
require 'factory_toys'
require 'spec'
require 'spec/autorun'

Spec::Runner.configure do |config|
  
end

SETTLEMENT_METHODS = [DCC_DCC = {:buy => 'dcc from dcc', :to => 'dcc to dcc'},
                      REG_REG = {:buy => 'reg from reg', :to => 'reg to reg'}
                      ]

#implemented here to get tests to pass as in Rails Environment and not ruby core??
class String
  def blank?
    self.nil? or self == ''
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
factory_toys-0.4.0 spec/spec_helper.rb
factory_toys-0.3.0 spec/spec_helper.rb
factory_toys-0.2.3 spec/spec_helper.rb
factory_toys-0.2.2 spec/spec_helper.rb
factory_toys-0.2.1 spec/spec_helper.rb