summaryrefslogtreecommitdiffstats
path: root/testing/auto_namedtuple.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/auto_namedtuple.py')
-rw-r--r--testing/auto_namedtuple.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/auto_namedtuple.py b/testing/auto_namedtuple.py
new file mode 100644
index 0000000..d5a4377
--- /dev/null
+++ b/testing/auto_namedtuple.py
@@ -0,0 +1,13 @@
+from __future__ import annotations
+
+import collections
+
+
+def auto_namedtuple(classname='auto_namedtuple', **kwargs):
+ """Returns an automatic namedtuple object.
+
+ Args:
+ classname - The class name for the returned object.
+ **kwargs - Properties to give the returned object.
+ """
+ return (collections.namedtuple(classname, kwargs.keys())(**kwargs))