9 lines
283 B
JavaScript
9 lines
283 B
JavaScript
describe('NullDiffBuilder', function () {
|
|
it('responds to withPath() by calling the passed function', function () {
|
|
var spy = jasmine.createSpy('callback');
|
|
jasmineUnderTest.NullDiffBuilder().withPath('does not matter', spy);
|
|
expect(spy).toHaveBeenCalled();
|
|
});
|
|
|
|
});
|