mirror of
https://github.com/yaml/pyyaml.git
synced 2025-10-19 19:13:19 +00:00

Loader.add_multi_constructor(None, myconstructor) Also add test for add_multi_constructor('!', ...) etc. See issue #317
20 lines
494 B
Python
20 lines
494 B
Python
|
|
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 *
|
|
from test_sort_keys import *
|
|
from test_multi_constructor import *
|
|
|
|
if __name__ == '__main__':
|
|
import test_appliance
|
|
test_appliance.run(globals())
|
|
|