mirror of
https://github.com/circify/circ.git
synced 2026-04-21 03:00:54 -04:00
12 lines
228 B
Python
12 lines
228 B
Python
#!/usr/bin/env python
|
|
|
|
from util import run_tests
|
|
from test_suite import *
|
|
|
|
if __name__ == "__main__":
|
|
tests = boolean_tests + arithmetic_tests + nary_arithmetic_tests + nary_boolean_tests
|
|
|
|
run_tests('zok', tests)
|
|
|
|
|