2015-08-19 07:23:18 +00:00
|
|
|
import { expect } from 'chai';
|
2015-08-05 11:29:30 +00:00
|
|
|
import u from '../lib';
|
|
|
|
|
|
|
|
describe('u.omit', () => {
|
|
|
|
it('can omit a key', () => {
|
|
|
|
const result = u({ foo: u.omit('bar') }, { foo: { bar: 7 } });
|
|
|
|
|
2015-08-19 07:23:18 +00:00
|
|
|
expect(result).to.eql({ foo: {} });
|
2015-08-05 11:29:30 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('freezes the result', () => {
|
2015-08-19 07:23:18 +00:00
|
|
|
expect(Object.isFrozen(u.omit('a', {}))).to.be.true;
|
2015-08-05 11:29:30 +00:00
|
|
|
});
|
|
|
|
});
|