mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
e9955e01d6
* Introduce option type * Improve test naming
29 lines
626 B
TypeScript
29 lines
626 B
TypeScript
/*
|
|
* Tests of Maybe
|
|
*
|
|
* How to run the tests:
|
|
* > mocha test/prelude/maybe.ts --require ts-node/register
|
|
*
|
|
* To specify test:
|
|
* > mocha test/prelude/maybe.ts --require ts-node/register -g 'test name'
|
|
*/
|
|
|
|
import * as assert from 'assert';
|
|
import { just, nothing } from '../../src/prelude/maybe';
|
|
|
|
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);
|
|
});
|
|
});
|