Sha256: a17995734a3550a27fcceaea2a32262fcf8914dfa7e52b75a3b07f78614cce35
Contents?: true
Size: 442 Bytes
Versions: 17
Compression:
Stored size: 442 Bytes
Contents
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(); }); it('responds to record()', function() { expect(function() { jasmineUnderTest.NullDiffBuilder().record('does not matter'); }).not.toThrow(); }) });
Version data entries
17 entries across 16 versions & 2 rubygems