show/hide this revision's text 2 rephrased question to be more general
show/hide this revision's text 1

unit testing dynamic fixtures in CakePHP

If you are not familiar with the CakePHP framework, you can maybe still help me. CakePHP uses SimpleTest

In the cakephp framework i am building tests for a behavior that is configured by adding fields to the table. This is intended to work in the same way that adding the "created" and "modified" fields will auto-populate these fields on save.

To test this I could create dozens of fixtures/model combos to test the different setups, but it would be a hundred times better, faster and easier to just have the fixture change "shape" between test methods.

Do you know how to do this?