Topic: Testing small methods?
I have several small "utility" methods that I need to test. These methods are in application.rb and are used by various controllers. Where do I put the test cases for these as they really aren't dependent on any controller, view or model?
A related question: How do I "get to" the method from the unit test code. I've tried to require 'application.rb' but that apparently doesn't do it.