From: aidy Date: 2008-07-16T20:35:22+09:00 Subject: Re: Is it possible to dynamically extend Test::Unit test cases? Hi Nick > If you haven't already, you might look at systir [1] -- does almost > exactly what you're describing. It's a little old, and perhaps not > maintained much, but it could give you an idea of how to do the > test/unit testcase definition more cleanly. > > /Nick > > [1]:http://www.atomicobject.com/pages/System+Testing+in+Ruby- Hide quoted text - > > - Show quoted text - The issues I have with the more procedural frameworks is that you are increasing your code base and thus maintenance. For example set_terms_of_use_checkbox clear_terms_of_use_checkbox Will wrap the same object in two methods Whereas this: gmail.sign_up_page.terms_of_use_checkbox.set gmail.sign_up_page.terms_of_use_checkbox.clear Is one object with two different methods operated upon it. Aidy