Sha256: d485d927ce84dcdee7e4a4b2aea11facc89d13143ab2c24f7f74f161856d1f10
Contents?: true
Size: 795 Bytes
Versions: 4
Compression:
Stored size: 795 Bytes
Contents
require "rubygems" require "bundler" Bundler.setup :default, :development # These require statments *must* be in this order: # http://bit.ly/bCC0Ew # Somewhat surprised they're not being required by Bundler... require 'shoulda' require 'mocha' lib = File.join(File.dirname(__FILE__), '..', '..', 'lib') $:.unshift lib unless $:.include? lib require 'sprout' $:.unshift File.expand_path(File.join(File.dirname(__FILE__), '..')) require 'unit/fake_process_runner' require 'unit/fake_executable_task' require 'sprout/test/sprout_test_case' class Test::Unit::TestCase # Only clear registrations in the Sprout core # project - not in child projects def teardown Sprout::Executable.clear_entities! Sprout::Library.clear_entities! Sprout::Generator.clear_entities! end end
Version data entries
4 entries across 4 versions & 1 rubygems