Sha256: 1f4779fb8cee337cae56c146b059d74568ed9fdaab28860ab32485eb52426e62

Contents?: true

Size: 471 Bytes

Versions: 7

Compression:

Stored size: 471 Bytes

Contents

#!/usr/bin/env ruby

if __FILE__ == $0
  base = File.dirname(__FILE__)
  Dir[base + '/*_spec.rb'].each {|f| require f}
else
  require 'rubygems'
  require 'test/unit'
  require 'shoulda'

  load File.dirname(__FILE__) + '/support/rails/config/environment.rb'
  ENV['MEMCACHED_SERVERS'] = 'localhost:11211'
  ENV['MEMCACHED_NAMESPACE'] = 'spec'

  $LOAD_PATH << File.dirname(__FILE__) + '/../lib'
  require 'remix/stash'

  Spec = Test::Unit::TestCase

  include Remix
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
remix-stash-1.1.1 spec/spec.rb
remix-stash-1.1.0 spec/spec.rb
remix-stash-1.0.4 spec/spec.rb
remix-stash-1.0.3 spec/spec.rb
remix-stash-1.0.2 spec/spec.rb
remix-stash-1.0.1 spec/spec.rb
remix-stash-1.0.0 spec/spec.rb