Sha256: bdc65d53e328a4845d966a0bf31670951a7e3a59e370147b6519d5f7d9529202
Contents?: true
Size: 803 Bytes
Versions: 4
Compression:
Stored size: 803 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_helper' 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
Version | Path |
---|---|
sprout-1.1.5.pre | test/unit/test_helper.rb |
sprout-1.1.4.pre | test/unit/test_helper.rb |
sprout-1.1.3.pre | test/unit/test_helper.rb |
sprout-1.1.2.pre | test/unit/test_helper.rb |