summaryrefslogtreecommitdiff
path: root/std/examples/testdata
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2021-02-02 19:05:46 +0800
committerGitHub <noreply@github.com>2021-02-02 12:05:46 +0100
commit6abf126c2a7a451cded8c6b5e6ddf1b69c84055d (patch)
treefd94c013a19fcb38954844085821ec1601c20e18 /std/examples/testdata
parenta2b5d44f1aa9d64f448a2a3cc2001272e2f60b98 (diff)
chore: remove std directory (#9361)
This removes the std folder from the tree. Various parts of the tests are pretty tightly dependent on std (47 direct imports and 75 indirect imports, not counting the cli tests that use them as fixtures) so I've added std as a submodule for now.
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, 0 insertions, 15 deletions
diff --git a/std/examples/testdata/cat/hello.txt b/std/examples/testdata/cat/hello.txt
deleted file mode 100644
index e965047ad..000000000
--- a/std/examples/testdata/cat/hello.txt
+++ /dev/null
@@ -1 +0,0 @@
-Hello
diff --git a/std/examples/testdata/cat/world.txt b/std/examples/testdata/cat/world.txt
deleted file mode 100644
index 216e97ce0..000000000
--- a/std/examples/testdata/cat/world.txt
+++ /dev/null
@@ -1 +0,0 @@
-World
diff --git a/std/examples/testdata/catj/array.json b/std/examples/testdata/catj/array.json
deleted file mode 100644
index 6dac876a0..000000000
--- a/std/examples/testdata/catj/array.json
+++ /dev/null
@@ -1,5 +0,0 @@
-[
- "string",
- 100,
- { "key": "value", "array": ["foo", "bar"] }
-]
diff --git a/std/examples/testdata/catj/object.json b/std/examples/testdata/catj/object.json
deleted file mode 100644
index 290c008ff..000000000
--- a/std/examples/testdata/catj/object.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "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
deleted file mode 100644
index 44e2ace7e..000000000
--- a/std/examples/testdata/catj/simple-array.json
+++ /dev/null
@@ -1 +0,0 @@
-[1, 2]
diff --git a/std/examples/testdata/catj/simple-object.json b/std/examples/testdata/catj/simple-object.json
deleted file mode 100644
index 52bb626d8..000000000
--- a/std/examples/testdata/catj/simple-object.json
+++ /dev/null
@@ -1 +0,0 @@
-{ "message": "hello" }