Do some custom behaviour If this function is more generally useful for other tests, consider moving it to a module in test_framework.
()
| 54 | pass |
| 55 | |
| 56 | def custom_function(): |
| 57 | """Do some custom behaviour |
| 58 | |
| 59 | If this function is more generally useful for other tests, consider |
| 60 | moving it to a module in test_framework.""" |
| 61 | # self.log.info("running custom_function") # Oops! Can't run self.log outside the RavenTestFramework |
| 62 | pass |
| 63 | |
| 64 | class ExampleTest(RavenTestFramework): |
| 65 | # Each functional test is a subclass of the RavenTestFramework class. |