aboutsummaryrefslogtreecommitdiff
path: root/contrib/libucl/python/tests/test_example.py
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2025-08-27 18:36:12 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2025-08-27 18:36:57 +0000
commit2326db40a1d2dd98631d70aae200ca52575139fb (patch)
treea4fbd80810a87e0329a1d4e0bfe9726577768fbf /contrib/libucl/python/tests/test_example.py
parente0bc44b5898ac10ef83959fe0a89fc5452d861a7 (diff)
parent1e2f270469c61337ef7f5f92ab93f691e5d86492 (diff)
Diffstat (limited to 'contrib/libucl/python/tests/test_example.py')
-rw-r--r--contrib/libucl/python/tests/test_example.py59
1 files changed, 0 insertions, 59 deletions
diff --git a/contrib/libucl/python/tests/test_example.py b/contrib/libucl/python/tests/test_example.py
deleted file mode 100644
index f0785531f4e2..000000000000
--- a/contrib/libucl/python/tests/test_example.py
+++ /dev/null
@@ -1,59 +0,0 @@
-from .compat import unittest
-import json
-import ucl
-
-_ucl_inp = '''
-param = value;
-section {
- param = value;
- param1 = value1;
- flag = true;
- number = 10k;
- time = 0.2s;
- string = "something";
- subsection {
- host = {
- host = "hostname";
- port = 900;
- }
- host = {
- host = "hostname";
- port = 901;
- }
- }
-}
-'''
-
-_json_res = {
- 'param': 'value',
- 'section': {
- 'param': 'value',
- 'param1': 'value1',
- 'flag': True,
- 'number': 10000,
- 'time': '0.2s',
- 'string': 'something',
- 'subsection': {
- 'host': [
- {
- 'host': 'hostname',
- 'port': 900,
- },
- {
- 'host': 'hostname',
- 'port': 901,
- }
- ]
- }
- }
-}
-
-class TestExample(unittest.TestCase):
- def test_example(self):
- # load in sample UCL
- u = ucl.load(_ucl_inp)
-
- # Output and read back the JSON
- uj = json.loads(json.dumps(u))
-
- self.assertEqual(uj, _json_res)