Sha256: 812238daf092c66310bfb68cef8afeaa34993dd2bec8f7676978effcaee0ba30

Contents?: true

Size: 605 Bytes

Versions: 3

Compression:

Stored size: 605 Bytes

Contents

ENV['RACK_ENV'] ||= 'test'

# Basic path registers
root   = File.expand_path('../', File.dirname(__FILE__))
lib    = File.expand_path('lib', root)
$:.unshift(root, lib)

# Shared Examples
Dir[File.expand_path('spec/shared_examples/*.rb')].each {|r| require r }

require 'fozzie'

module Fozzie
  class Adapter::TestAdapter
    def register(*params); end
    def delimeter; ""; end
    def safe_separator; ""; end
  end
end

Fozzie.configure do |config|
  config.host     = '127.0.0.1'
  config.port     = 8809
  config.adapter  = "TestAdapter"
end

RSpec.configure do |config|
  config.order = :random
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fozzie-1.0.2 spec/spec_helper.rb
fozzie-1.0.1 spec/spec_helper.rb
fozzie-1.0.0 spec/spec_helper.rb