Renamed helpers to correspond to renamed Controller classes.
[merb_radiant.git] / lib / generators / extension / templates / .svn / text-base / functional_test.rb.svn-base
blobdb34ed3db2f50ad0f9286ce01f657b6af4934328
1 require File.dirname(__FILE__) + '/../test_helper'
3 class <%= class_name %>Test < Test::Unit::TestCase
4   
5   # Replace this with your real tests.
6   def test_this_extension
7     flunk
8   end
9   
10   def test_initialization
11     assert_equal File.join(File.expand_path(RAILS_ROOT), 'vendor', 'extensions', '<%= file_name %>'), <%= class_name %>.root
12     assert_equal '<%= extension_name %>', <%= class_name %>.extension_name
13   end
14   
15 end