This is code in a model:
def find_tech
Category.find_by_name("tech")
end
and this is the rspec test:
x = Category.find_tech
x.name.should == "tech"
and the test passes. But rcov doesn't think so.
First of all why not ?
Second, if I do have to change something then what good is simplecov ?