aboutsummaryrefslogtreecommitdiff
path: root/tests/lib/test_yaml.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/test_yaml.py')
-rw-r--r--tests/lib/test_yaml.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/lib/test_yaml.py b/tests/lib/test_yaml.py
new file mode 100644
index 0000000..a5c10a3
--- /dev/null
+++ b/tests/lib/test_yaml.py
@@ -0,0 +1,23 @@
+
+from test_dump_load import *
+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 *
+
+from test_schema import *
+
+if __name__ == '__main__':
+ import test_appliance
+ test_appliance.run(globals())
+