You can keep inheriting from ActionController::TestCase, you just need to tell rails which controller class is being tested (by default rails gets this from the test class name):
class MoreTests < ActionController::TestCase
tests AccountsController
...
end
Fred