Sha256: 2d44514dce31a20a71b8246db538753e9df3d4b903e3110d68f62c33c3ef5c86

Contents?: true

Size: 611 Bytes

Versions: 9

Compression:

Stored size: 611 Bytes

Contents

# encoding: UTF-8
ENV["RACK_ENV"] = "test"
require "mango"

PROJECT_ROOT = Pathname File.expand_path("..", File.dirname(__FILE__))
FIXTURE_ROOT = Pathname File.expand_path("fixture", File.dirname(__FILE__))
RUNNER_ROOT  = Pathname File.expand_path("runner", File.dirname(__FILE__))

class Mango::Application
  set :root, FIXTURE_ROOT.to_s
end

###################################################################################################

Dir[File.expand_path("support/**/*.rb", File.dirname(__FILE__))].each { |f| require f }

RSpec.configure do |config|
  config.include MalformedWhitespaceMatchers
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mango-0.6.3 spec/spec_helper.rb
mango-0.6.2 spec/spec_helper.rb
mango-0.6.1 spec/spec_helper.rb
mango-0.6.0 spec/spec_helper.rb
mango-0.5.4 spec/spec_helper.rb
mango-0.5.3 spec/spec_helper.rb
mango-0.5.2 spec/spec_helper.rb
mango-0.5.1 spec/spec_helper.rb
mango-0.5.0 spec/spec_helper.rb