Skip to content

Instantly share code, notes, and snippets.

@slawosz
Created June 12, 2010 12:17
Show Gist options
  • Save slawosz/435675 to your computer and use it in GitHub Desktop.
Save slawosz/435675 to your computer and use it in GitHub Desktop.
require 'rubygems'
if RUBY_VERSION >= '1.9'
require 'time'
require 'date'
require 'active_support/time'
else
require 'active_support'
require 'active_support/core_ext'
end
require 'test/unit'
require 'shoulda'
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'business_time'
require 'business_seconds'
class Test::Unit::TestCase
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment