in reply to OO Perl is making my brain hurt
For example: When you use DBI to access a database, you are actually using an object. Logging on to the server you use
. That is using an anonymous object created by the DBI package to create a connection to the database. You are required to pass it parameters. The documentation tells you what parameters to use.DBI->Connect
You might be able to write scripts and use the objects in the toolset for specific tests.
I think that with time you will be able to understand what the creator of the toolset wanted. In the meantime, you can override methods or create your own inherited objects to test the toolset.
|
|---|