You are here

function rules_test_done in Rules 6

Cleans up

1 call to rules_test_done()
RulesTestCase::tearDown in rules_test/rules_test.test
Delete created files and temporary files directory, delete the tables created by setUp(), and reset the database prefix.

File

rules_test/rules_test.module, line 39
Rules engine testing module

Code

function rules_test_done() {
  global $_rules_exec_log;
  if (isset($_rules_exec_log)) {
    unset($_rules_exec_log['rules_test_keep_log']);
  }
}