diff options
Diffstat (limited to 'tests/test_corelib.py')
| -rw-r--r-- | tests/test_corelib.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_corelib.py b/tests/test_corelib.py index a0a3424..4a21e29 100644 --- a/tests/test_corelib.py +++ b/tests/test_corelib.py @@ -6,6 +6,9 @@ def main(): rule_pack = "example_rule_pack" result = cb.process_rule_pack(rule_pack) print(result) + print(cb.name) + cb.name = "a" + print(cb.name) if __name__ == "__main__": main()
\ No newline at end of file |
