> > 'extends' happens at runtime, so when your test stuff is running, the > 'extends' call hasn't happened yet. 'use' and 'package' are compile > time, so those parts *are* set up before the test stuff starts running. > Either move the packages up before the tests, or wrap the packages in a > BEGIN block.
HEY! That actually makes sense! That's nice. :-) > > (Unrelated, but indirect method calls are evil! Stop that!) > Indirect method calls? Whatever do you mean?