Sha256: 06b2425d0dcdd6f516553846c50ad64bbfdcab239201fbc6dc82b2c7a04bf0b1
Contents?: true
Size: 1019 Bytes
Versions: 2
Compression:
Stored size: 1019 Bytes
Contents
describe("Any", function() { it("matches a string", function() { var any = new j$.Any(String); expect(any.jasmineMatches("foo")).toBe(true); }); it("matches a number", function() { var any = new j$.Any(Number); expect(any.jasmineMatches(1)).toBe(true); }); it("matches a function", function() { var any = new j$.Any(Function); expect(any.jasmineMatches(function(){})).toBe(true); }); it("matches an Object", function() { var any = new j$.Any(Object); expect(any.jasmineMatches({})).toBe(true); }); it("matches a Boolean", function() { var any = new j$.Any(Boolean); expect(any.jasmineMatches(true)).toBe(true); }); it("matches another constructed object", function() { var Thing = function() {}, any = new j$.Any(Thing); expect(any.jasmineMatches(new Thing())).toBe(true); }); it("jasmineToString's itself", function() { var any = new j$.Any(Number); expect(any.jasmineToString()).toMatch('<jasmine.any'); }); });
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jasmine-core-2.0.0.rc3 | ./lib/jasmine-core/spec/core/AnySpec.js |
jasmine-core-2.0.0.rc2 | ./lib/jasmine-core/spec/core/AnySpec.js |