Sha256: 5df52ea795732baeceff92ae8f09545cdb170186bd3102edeb4d9be06d1da5ed

Contents?: true

Size: 606 Bytes

Versions: 9

Compression:

Stored size: 606 Bytes

Contents

# encoding: utf-8
$LOAD_PATH << ::File.expand_path('../../lib', __FILE__)

require 'simplecov'
SimpleCov.command_name 'rspec'
SimpleCov.start

# Pull in all of the gems including those in the `test` group
require 'bundler'
Bundler.require :default, :test, :development

require 'test_server'

require File.expand_path('../../app/controllers/application_controller.rb', __FILE__)
Dir.glob(::File.expand_path('../../app/controllers/*.rb', __FILE__)).each { |f| require f }

# Loading support files
Dir.glob(::File.expand_path('../support/*.rb', __FILE__)).each { |f| require_relative f }

include TestServer

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
test_server-0.2.4 spec/spec_helper.rb
test_server-0.2.3 spec/spec_helper.rb
test_server-0.2.2 spec/spec_helper.rb
test_server-0.2.1 spec/spec_helper.rb
test_server-0.2.0 spec/spec_helper.rb
test_server-0.1.2 spec/spec_helper.rb
test_server-0.1.1 spec/spec_helper.rb
test_server-0.1.0 spec/spec_helper.rb
test_server-0.0.11 spec/spec_helper.rb