Create static module

Hi All

I just noticed that I have a module that should never ever change the
database. During unit testing I noticed it was possible. To solve this
(for my tests) I added to my module:
def save
end

I don’t know if this is good enough or maybe there is a better way ?!

Thnx
LuCa

The best way to do this is to set the scope of find to be :readonly
(Not sure the syntax - anyone?)