summaryrefslogtreecommitdiff
path: root/tests3/data/construct-custom.code
diff options
context:
space:
mode:
Diffstat (limited to 'tests3/data/construct-custom.code')
-rw-r--r--tests3/data/construct-custom.code10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests3/data/construct-custom.code b/tests3/data/construct-custom.code
new file mode 100644
index 0000000..2d5f063
--- /dev/null
+++ b/tests3/data/construct-custom.code
@@ -0,0 +1,10 @@
+[
+ MyTestClass1(x=1),
+ MyTestClass1(x=1, y=2, z=3),
+ MyTestClass2(x=10),
+ MyTestClass2(x=10, y=20, z=30),
+ MyTestClass3(x=1),
+ MyTestClass3(x=1, y=2, z=3),
+ MyTestClass3(x=1, y=2, z=3),
+ YAMLObject1(my_parameter='foo', my_another_parameter=[1,2,3])
+]