Renamed helpers to correspond to renamed Controller classes.
[merb_radiant.git] / lib / generators / extension / templates / .svn / text-base / test_helper.rb.svn-base
blobcfbfcaaea408b3f6765b1ce53bb8c8eb73c14811
1 require 'test/unit'
2 # # Load the environment
3 unless defined? RADIANT_ROOT
4   ENV["RAILS_ENV"] = "test"
5   require "#{File.expand_path(File.dirname(__FILE__) + "/../../../../")}/config/environment"
6 end
7 require "#{RADIANT_ROOT}/test/test_helper"
9 class Test::Unit::TestCase
10   
11   # Include a helper to make testing Radius tags easier
12   test_helper :extension_tags
13   
14   # Add the fixture directory to the fixture path
15   self.fixture_path << File.dirname(__FILE__) + "/fixtures"
16   
17   # Add more helper methods to be used by all extension tests here...
18   
19 end