« get me outta code hell

test: reorganize data tests a lil - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/test/unit/data/composite/exposeDependency.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-09-28 18:29:33 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-09-28 18:29:33 -0300
commitac37f9db30d997d64de069a7b3b53c3474bdc413 (patch)
treeb1534ca78f50fdb4399fedfbf73136bf9097ab52 /test/unit/data/composite/exposeDependency.js
parentef290302472bd66ff9823aad1a4e029a4b4e2eba (diff)
test: reorganize data tests a lil
Diffstat (limited to 'test/unit/data/composite/exposeDependency.js')
-rw-r--r--test/unit/data/composite/exposeDependency.js74
1 files changed, 0 insertions, 74 deletions
diff --git a/test/unit/data/composite/exposeDependency.js b/test/unit/data/composite/exposeDependency.js
deleted file mode 100644
index 78801343..00000000
--- a/test/unit/data/composite/exposeDependency.js
+++ /dev/null
@@ -1,74 +0,0 @@
-import t from 'tap';
-
-import {
-  compositeFrom,
-  continuationSymbol,
-  exposeDependency,
-  input,
-} from '#composite';
-
-t.test(`exposeDependency: basic behavior`, t => {
-  t.plan(4);
-
-  const composite1 = compositeFrom({
-    compose: false,
-
-    steps: [
-      exposeDependency({dependency: 'foo'}),
-    ],
-  });
-
-  t.match(composite1, {
-    expose: {
-      dependencies: ['foo'],
-    },
-  });
-
-  t.equal(composite1.expose.compute({foo: 'bar'}), 'bar');
-
-  const composite2 = compositeFrom({
-    compose: false,
-
-    steps: [
-      {
-        dependencies: ['foo'],
-        compute: (continuation, {foo}) =>
-          continuation({'#bar': foo.toUpperCase()}),
-      },
-
-      exposeDependency({dependency: '#bar'}),
-    ],
-  });
-
-  t.match(composite2, {
-    expose: {
-      dependencies: ['foo'],
-    },
-  });
-
-  t.equal(composite2.expose.compute({foo: 'bar'}), 'BAR');
-});
-
-t.test(`exposeDependency: validate inputs`, t => {
-  t.plan(2);
-
-  t.throws(
-    () => exposeDependency({}),
-    {
-      message: `Errors in input options passed to exposeDependency`,
-      errors: [
-        {message: `Required these inputs: dependency`},
-      ],
-    });
-
-  t.throws(
-    () => exposeDependency({
-      dependency: input.value('some static value'),
-    }),
-    {
-      message: `Errors in input options passed to exposeDependency`,
-      errors: [
-        {message: `dependency: Expected dependency name, got input.value() call`},
-      ],
-    });
-});