diff options
author | Matěj Cepl <mcepl@redhat.com> | 2012-02-27 18:54:37 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2012-02-27 18:54:37 +0100 |
commit | d9f2aa1f9d1066a168700c4e356db4f26772468a (patch) | |
tree | afe42448063640b6b822e95c032fd649a6be353d /test/test_input.py | |
parent | a9adb2cae3d62d95a1fdc57d7137dca5e5b9ada9 (diff) | |
download | yamlish-d9f2aa1f9d1066a168700c4e356db4f26772468a.tar.gz |
Temporary commit to make files available
Diffstat (limited to 'test/test_input.py')
-rw-r--r-- | test/test_input.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/test_input.py b/test/test_input.py index d950f86..6ed6a6f 100644 --- a/test/test_input.py +++ b/test/test_input.py @@ -1,5 +1,9 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import, print_function, unicode_literals +import test +import unittest +import yamlish + test_data_list = [ { "name": "Input test", @@ -64,3 +68,10 @@ total: 4443.52 } } ] + +class TestInput(unittest.TestCase): # IGNORE:C0111 + pass + +if __name__ == "__main__": + test.generate_testsuite(test_data_list, TestInput, yamlish.load) + unittest.main() |