I'm using postgresql in a Ruby on Rails app and I've moved some of the
application logic from Ruby (ActiveRecord callbacks) to postgresql
(triggers + functions) for performance reasons. The problem is that
now those parts of the app remain untested. Does anyone have a
suggestion for doing automated testing in postgresql, even if the
language isn't Ruby?
Thanks!
-bd