Hi,
I’m a noob trying to work through adding restful_authentication to
a blog. The login page allows me to login and I can create a post
after loggin in…but my rake:test units won’t run because I’m getting
an undefined method ‘fixtures’ for UserTest:Class (NoMethodError) I’m
getting an error on ‘fixtures: users’
==>I did move include AuthenticatedTestHelper in test/test_helper.rb
as per the instructions and commented it out in this class
here’s a bigger snip of my user_test.rb------
require File.dirname(FILE) + ‘/…/test_helper’
class UserTest < Test::Unit::TestCase
Be sure to include AuthenticatedTestHelper in test/test_helper.rb
instead.
Then, you can remove it from this and the functional test.
include AuthenticatedTestHelper
fixtures :users
…