Sha256: 45eb6c0d9f307c3247e17cf86e53c694f7e417d078fce8872945cfd98f38c5c7
Contents?: true
Size: 1.08 KB
Versions: 6
Compression:
Stored size: 1.08 KB
Contents
describe("jasmineUnderTest.util", function() { describe("isArray_", function() { it("should return true if the argument is an array", function() { expect(jasmineUnderTest.isArray_([])).toBe(true); expect(jasmineUnderTest.isArray_(['a'])).toBe(true); }); it("should return false if the argument is not an array", function() { expect(jasmineUnderTest.isArray_(undefined)).toBe(false); expect(jasmineUnderTest.isArray_({})).toBe(false); expect(jasmineUnderTest.isArray_(function() {})).toBe(false); expect(jasmineUnderTest.isArray_('foo')).toBe(false); expect(jasmineUnderTest.isArray_(5)).toBe(false); expect(jasmineUnderTest.isArray_(null)).toBe(false); }); }); describe("isUndefined", function() { it("reports if a variable is defined", function() { var a; expect(jasmineUnderTest.util.isUndefined(a)).toBe(true); expect(jasmineUnderTest.util.isUndefined(undefined)).toBe(true); var undefined = "diz be undefined yo"; expect(jasmineUnderTest.util.isUndefined(undefined)).toBe(false); }); }); });
Version data entries
6 entries across 5 versions & 2 rubygems