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

19 lines
417 B
TypeScript
Raw Normal View History

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