hippofish/packages/backend/test/prelude/maybe.ts

19 lines
422 B
TypeScript
Raw Normal View History

2024-03-16 16:49:12 +01:00
import * as assert from "node:assert";
2023-04-07 03:56:46 +02:00
import { just, nothing } from "../../src/prelude/maybe.js";
2023-04-07 03:56:46 +02:00
describe("just", () => {
it("has a value", () => {
assert.deepStrictEqual(just(3).isJust(), true);
});
2023-04-07 03:56:46 +02:00
it("has the inverse called get", () => {
assert.deepStrictEqual(just(3).get(), 3);
});
});
2023-04-07 03:56:46 +02:00
describe("nothing", () => {
it("has no value", () => {
assert.deepStrictEqual(nothing().isJust(), false);
});
});