Sha256: b477ab9d85af7956495ccb90ee8ec0f0e4e918f878feb82fc4e9ad45c1ce0dc5

Contents?: true

Size: 538 Bytes

Versions: 18

Compression:

Stored size: 538 Bytes

Contents

require 'rubygems'
require 'bundler'
require 'thor'

begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'test/unit'

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'bellows'
require 'mocha'

def fixture_path
  File.expand_path("../fixtures", __FILE__)
end

def fixture(file)
  File.read(fixture_path + '/' + file)
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
bellows-2.0.5 test/helper.rb
bellows-2.0.4 test/helper.rb
bellows-2.0.3 test/helper.rb
bellows-2.0.2 test/helper.rb
bellows-2.0.1 test/helper.rb
bellows-2.0.0 test/helper.rb
bellows-1.2.0 test/helper.rb
bellows-1.1.3 test/helper.rb
bellows-1.1.2 test/helper.rb
bellows-1.1.1 test/helper.rb
bellows-1.0.12 test/helper.rb
bellows-1.0.11 test/helper.rb
bellows-1.0.10 test/helper.rb
bellows-1.0.9 test/helper.rb
bellows-1.0.8 test/helper.rb
bellows-1.0.7 test/helper.rb
bellows-1.0.6 test/helper.rb
bellows-1.0.5 test/helper.rb