14 Jun 2007Testing Helpers in Rails
It can be useful at times to unit test helpers to make sure they generate correct html. It is not obvious how to do this at first. So far I have been testing my helper by defining a class “MyClass” at the top of my unit test and including all the appropriate modules. I also need to define a url_for method if I ever want to test helpers that generate links.
The code follows (Replace MyHelper with your appropriate helper class);
Then in my tests I do something like;
Seems easy enough to do in retrospect but things usually do.
Posted in code and rails