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