In my ApplicationController I have a method defined as a helper method:
helper_method :some_method_here
I'm using Rails3 with RSpec2
You can use an anonymous controller to test your ApplicationController, as describe in the RSpec documentation. There's also a section on testing helpers.