mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-15 06:27:34 -07:00
94228778c9
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
18 lines
417 B
TypeScript
18 lines
417 B
TypeScript
import * as assert from 'assert';
|
|
import { just, nothing } from '../../src/prelude/maybe.js';
|
|
|
|
describe('just', () => {
|
|
it('has a value', () => {
|
|
assert.deepStrictEqual(just(3).isJust(), true);
|
|
});
|
|
|
|
it('has the inverse called get', () => {
|
|
assert.deepStrictEqual(just(3).get(), 3);
|
|
});
|
|
});
|
|
|
|
describe('nothing', () => {
|
|
it('has no value', () => {
|
|
assert.deepStrictEqual(nothing().isJust(), false);
|
|
});
|
|
});
|