Sha256: 619dde9a9686a6f9a6b17a174c4f3ebe3fe60b0b3cd5e973e586915a24d73049

Contents?: true

Size: 777 Bytes

Versions: 1

Compression:

Stored size: 777 Bytes

Contents

#!/usr/bin/env ruby
# vim: set nosta noet ts=4 sw=4:
# encoding: utf-8

BEGIN {
	require 'pathname'
	basedir = Pathname.new( __FILE__ ).dirname.parent.parent

	libdir = basedir + "lib"

	$LOAD_PATH.unshift( libdir.to_s ) unless $LOAD_PATH.include?( libdir.to_s )
}

# SimpleCov test coverage reporting; enable this using the :coverage rake task
if ENV['COVERAGE']
	$stderr.puts "\n\n>>> Enabling coverage report.\n\n"
	require 'simplecov'
	SimpleCov.start do
		add_filter 'spec'
	end
end


require 'loggability' unless defined?( Loggability )

#
# Some helper functions for RSpec specifications
#
module Loggability::SpecHelpers

	

end # Loggability::SpecHelpers


### Mock with RSpec
RSpec.configure do |c|
	c.mock_with( :rspec )

	c.include( Loggability::SpecHelpers )
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
loggability-0.0.1 spec/lib/helpers.rb