This evening I tried to get my test coverage up a bit by making tests of the helper classes using Geoffrey Grosenbach’s Test Your Helpers instructions. But I couldn’t get it to work. Has anyone used it? Does it work? Or is there some other way?
Testing the helpers is the last big thing left to get to the unreachable 100% test coverage. So naturally I want to solve it!

I have absolutely no idea!!!!! I hope this comment helped you ;-)
require File.dirname(FILE) + ‘/../test_helper’ require ‘user_helper’
class UserHelperTest < Test::Unit::TestCase
include UserHelper
def test_a_user_helper_method_here end
end
Thanks!
A few weeks ago I found the helper_test plugin that I use in my current project. But I had forgotten that I had blogged out testing helpers more than a year ago…