DEV Community

Discussion on: My First Ruby on Rails Presenter

Collapse
 
philnash profile image
Phil Nash

I would normally write tests for a presenter if I was writing one, exactly as you put it, to ensure that the calculations are correct.

One other thing I was interested in, you used delegate to delegate methods on your presenter to the underlying @category but also defined the id, created_at and budget methods. Was there a reason for that?