Sha256: a7cdd11131513304dbba228cc3c668d1525c17cbb6bac2cedc7658630862e7ca

Contents?: true

Size: 517 Bytes

Versions: 13

Compression:

Stored size: 517 Bytes

Contents

# encoding: utf-8
$TESTING=true

$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
$:.unshift File.expand_path(File.join(File.dirname(__FILE__)))
require 'warden'

require 'rubygems'
require 'rack'

Dir[File.join(File.dirname(__FILE__), "helpers", "**/*.rb")].each do |f|
  require f
end

Spec::Runner.configure do |config|
  config.include(Warden::Spec::Helpers)

  def load_strategies
    Dir[File.join(File.dirname(__FILE__), "helpers", "strategies", "**/*.rb")].each do |f|
      load f
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
warden-1.0.1 spec/spec_helper.rb
warden-1.0.0 spec/spec_helper.rb
warden-0.10.7 spec/spec_helper.rb
warden-0.10.6 spec/spec_helper.rb
warden-0.10.5 spec/spec_helper.rb
warden-0.10.4 spec/spec_helper.rb
warden-0.10.3 spec/spec_helper.rb
warden-0.10.2 spec/spec_helper.rb
warden-0.10.1 spec/spec_helper.rb
warden-0.10.0 spec/spec_helper.rb
warden-0.9.7 spec/spec_helper.rb
warden-0.9.6 spec/spec_helper.rb
warden-0.9.5 spec/spec_helper.rb