2015-04-04 13:25:24 -03:00
|
|
|
|
|
|
|
from test_mark import *
|
|
|
|
from test_reader import *
|
|
|
|
from test_canonical import *
|
|
|
|
from test_tokens import *
|
|
|
|
from test_structure import *
|
|
|
|
from test_errors import *
|
|
|
|
from test_resolver import *
|
|
|
|
from test_constructor import *
|
|
|
|
from test_emitter import *
|
|
|
|
from test_representer import *
|
|
|
|
from test_recursive import *
|
|
|
|
from test_input_output import *
|
2018-03-16 23:25:44 +01:00
|
|
|
from test_sort_keys import *
|
2019-12-07 22:40:48 +01:00
|
|
|
from test_multi_constructor import *
|
2015-04-04 13:25:24 -03:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import test_appliance
|
|
|
|
test_appliance.run(globals())
|
|
|
|
|