Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-16 | Updated test-handler for new API. | Steve Kemp | |
This update consists of two changes: * No longer return "true" or "false" instead return "TEST_FAILED", or "TEST_SUCCEEDED". * Removed the testing of test-inversion from the class, now it lives in the base-class where it should have done all along. | |||
2015-04-16 | Ensure we load our base-class. | Steve Kemp | |
2015-04-16 | Fixed to be valid. | Steve Kemp | |
Due to some sloppy edits this module was not correct. | |||
2015-04-16 | Fixed syntax error. | Steve Kemp | |
2015-03-09 | Removed trailing whitespace from the code | Steve Kemp | |
2015-03-09 | More minor space fixups | Steve Kemp | |
2015-03-09 | Removed spaces inside parenthesis. | Steve Kemp | |
2015-03-09 | Prefer single-quotes when you don't need interpolation. | Steve Kemp | |
So "foo" is less good than 'foo'. | |||
2015-03-09 | Avoid redudent returns. | Steve Kemp | |
The last expression of a method is the return value. So: def foo; false ; end Is the same as: def foo; return false; end | |||
2015-03-09 | Don't use parenthesis aroudn conditions in an if. | Steve Kemp | |
2015-03-09 | Avoid "Array.new" and "Hash.new" | Steve Kemp | |
Instead use {} + (). | |||
2015-03-09 | Removed bogus period. | Steve Kemp | |
2013-06-24 | Allow the code to load when the ruby LDAP module is not present. | Steve Kemp | |
Although the actual protocol-test will instafail this allows the test suite to be executed without the LDAP library being present. | |||
2013-02-13 | We no longer need to include the TCP-class, as we're no | Steve Kemp | |
longer derived from it. | |||
2013-02-13 | Fixed syntax | Steve Kemp | |
2013-02-13 | Updated. | Steve Kemp | |
2013-02-13 | LDAP probe complete. | Steve Kemp | |
2013-02-13 | Updated. | Steve Kemp | |
2013-02-13 | Updated to peel off a username/password. | Steve Kemp | |
2012-11-23 | Removed duplicate member-variables for subclasses. | Steve Kemp | |
Allow test-inversion via "must not run". | |||
2012-11-22 | Parse the configuration file into arrays of jobs, via our test-factory | Steve Kemp | |
2012-11-22 | Whitespace updates. | Steve Kemp | |
2012-11-22 | Moved tests into a namespace. | Steve Kemp | |
2012-11-22 | Updated to require libraries more sanely | Steve Kemp | |
2012-11-21 | LDAP-protocol is now testable. | Steve Kemp | |