diff options
| author | pboling | 2009-10-22 14:59:23 -0400 |
|---|---|---|
| committer | pboling | 2009-10-22 14:59:23 -0400 |
| commit | e010096f2a9c1f5ddecbad998051b210ba47b3dd (patch) | |
| tree | 68d13a36dce41aebfbc3f826b7b1289725a17e4d /test/test_helper.rb | |
| parent | 0411f1f60ae8be13ac4a732a48e44d3153441002 (diff) | |
| download | sms-fu-e010096f2a9c1f5ddecbad998051b210ba47b3dd.tar.bz2 | |
fixed tests so that they actually run (and all pass)
Diffstat (limited to 'test/test_helper.rb')
| -rw-r--r-- | test/test_helper.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..0e5ef2c --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,9 @@ +require 'test/unit' +require 'rubygems' + +require 'actionmailer' + +RAILS_ENV = 'test' unless defined?(RAILS_ENV) +RAILS_DEFAULT_LOGGER = Logger.new(StringIO.new) unless defined?(RAILS_DEFAULT_LOGGER) + +require File.join(File.dirname(__FILE__), "..", "init") |
