summaryrefslogtreecommitdiff
path: root/std/examples/testdata
diff options
context:
space:
mode:
Diffstat (limited to 'std/examples/testdata')
-rw-r--r--std/examples/testdata/cat/hello.txt1
-rw-r--r--std/examples/testdata/cat/world.txt1
-rw-r--r--std/examples/testdata/catj/array.json5
-rw-r--r--std/examples/testdata/catj/object.json6
-rw-r--r--std/examples/testdata/catj/simple-array.json1
-rw-r--r--std/examples/testdata/catj/simple-object.json1
6 files changed, 15 insertions, 0 deletions
diff --git a/std/examples/testdata/cat/hello.txt b/std/examples/testdata/cat/hello.txt
new file mode 100644
index 000000000..e965047ad
--- /dev/null
+++ b/std/examples/testdata/cat/hello.txt
@@ -0,0 +1 @@
+Hello
diff --git a/std/examples/testdata/cat/world.txt b/std/examples/testdata/cat/world.txt
new file mode 100644
index 000000000..216e97ce0
--- /dev/null
+++ b/std/examples/testdata/cat/world.txt
@@ -0,0 +1 @@
+World
diff --git a/std/examples/testdata/catj/array.json b/std/examples/testdata/catj/array.json
new file mode 100644
index 000000000..6dac876a0
--- /dev/null
+++ b/std/examples/testdata/catj/array.json
@@ -0,0 +1,5 @@
+[
+ "string",
+ 100,
+ { "key": "value", "array": ["foo", "bar"] }
+]
diff --git a/std/examples/testdata/catj/object.json b/std/examples/testdata/catj/object.json
new file mode 100644
index 000000000..290c008ff
--- /dev/null
+++ b/std/examples/testdata/catj/object.json
@@ -0,0 +1,6 @@
+{
+ "string": "foobar",
+ "number": 123,
+ "array": [{ "message": "hello" }]
+}
+
diff --git a/std/examples/testdata/catj/simple-array.json b/std/examples/testdata/catj/simple-array.json
new file mode 100644
index 000000000..44e2ace7e
--- /dev/null
+++ b/std/examples/testdata/catj/simple-array.json
@@ -0,0 +1 @@
+[1, 2]
diff --git a/std/examples/testdata/catj/simple-object.json b/std/examples/testdata/catj/simple-object.json
new file mode 100644
index 000000000..52bb626d8
--- /dev/null
+++ b/std/examples/testdata/catj/simple-object.json
@@ -0,0 +1 @@
+{ "message": "hello" }