Sha256: 079f9e495cc6a0ca4f3782256b738ab76ae6430f721d6f9e60905b56bcc3d185

Contents?: true

Size: 456 Bytes

Versions: 5

Compression:

Stored size: 456 Bytes

Contents

# encoding: UTF-8

$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../lib"))

begin
  require "ruby-debug"
rescue LoadError
end

require "rubygems"
require "cutest"

def silence_warnings
  original_verbose, $VERBOSE = $VERBOSE, nil
  yield
ensure
  $VERBOSE = original_verbose
end unless defined?(silence_warnings)

$VERBOSE = true

require "ohm"

Ohm.redis = Redic.new("redis://127.0.0.1:6379")

prepare do
  Ohm.redis.call("FLUSHALL")
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ohm-2.0.0.alpha5 test/helper.rb
ohm-2.0.0.alpha4 test/helper.rb
ohm-2.0.0.alpha3 test/helper.rb
ohm-2.0.0.alpha2 test/helper.rb
ohm-2.0.0.alpha1 test/helper.rb