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.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/auto_namedtuple.py b/testing/auto_namedtuple.py
new file mode 100644
index 0000000..0841094
--- /dev/null
+++ b/testing/auto_namedtuple.py
@@ -0,0 +1,11 @@
+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))