Undefined method `fixtures' problem

Hello,

I posted a couple of days ago regarding a problem I had with restful
authentication test failing. So, I tried it again. I started a new
application, installed restful authentication, ran the tests and they
all passed. So, the problem is not with the plugin. I do have another
problem though and appreciate your help.

I use rails 2.3.2 with restful authentication and resource_controller
plugins. I created categories, products and pages using
scaffold_resource… This creates tests for me. I haven’t changed
anything in the tests just yet. However, when running ‘rake’, all the
unit tests pass but the functional tests do not. I get an error that
says (among other things):

./test/functional/categories_controller_test.rb:8: undefined method
fixtures' for CategoriesControllerTest:Class (NoMethodError) from /usr/local/lib/ruby/gems/1.8/gems/activesupport-2.3.2/lib/ active_support/dependencies.rb:147:inload_without_new_constant_marking’

rake aborted!
Command failed with status (1): [/usr/local/bin/ruby -I"/…]


The ./test/functional/categories_controller_test.rb has:

require File.dirname(FILE) + ‘/…/test_helper’
require ‘categories_controller’

Re-raise errors caught by the controller.

class CategoriesController; def rescue_action(e) raise e end; end

class CategoriesControllerTest < Test::Unit::TestCase
fixtures :categories

Please help,
Thanks,
Elle