Sha256: 719c4867d607e771c0b3f9cc7914884f2b1ba886b57d6240b98730d5b6bca20d
Contents?: true
Size: 813 Bytes
Versions: 1
Compression:
Stored size: 813 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.expand_path(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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sprout-1.0.35.pre | test/unit/sprout_test_helper.rb |