updeep-remeda/test/in-spec.js

36 lines
1.0 KiB
JavaScript

import { expect } from 'chai';
import u from '../lib';
describe('u.in', () => {
it('can update a single path described with a string', () => {
const object = { a: { b: 0 } };
const result = u.in('a.b', 3, object);
expect(result).to.eql({ a: { b: 3 } });
});
it('can update a single path described with a string with a function', () => {
const inc = x => x + 1;
const object = { a: { b: 0 } };
const result = u.in('a.b', inc, object);
expect(result).to.eql({ a: { b: 1 } });
});
it('can update a single path described with an array', () => {
const object = { a: { b: 0 } };
const result = u.in(['a', 'b'], 3, object);
expect(result).to.eql({ a: { b: 3 } });
});
it('can update arrays', () => {
const object = { a: [0, 0, 0] };
const result = u.in('a.1', 3, object);
expect(result).to.eql({ a: [0, 3, 0] });
});
it('can be partially applied', () => {
const object = { a: { b: 0 } };
const result = u.in('a.b')(3)(object);
expect(result).to.eql({ a: { b: 3 } });
});
});