44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
describe("NotEmpty", function () {
|
|
it("matches a non empty object", function () {
|
|
var notEmpty = new jasmineUnderTest.NotEmpty();
|
|
|
|
expect(notEmpty.asymmetricMatch({undefined: false})).toBe(true);
|
|
expect(notEmpty.asymmetricMatch({})).toBe(false);
|
|
});
|
|
|
|
it("matches a non empty array", function () {
|
|
var notEmpty = new jasmineUnderTest.NotEmpty();
|
|
|
|
expect(notEmpty.asymmetricMatch([1, 12, 3])).toBe(true);
|
|
expect(notEmpty.asymmetricMatch([])).toBe(false);
|
|
});
|
|
|
|
it("matches a non empty string", function () {
|
|
var notEmpty = new jasmineUnderTest.NotEmpty();
|
|
|
|
expect(notEmpty.asymmetricMatch('12312')).toBe(true);
|
|
expect(notEmpty.asymmetricMatch("")).toBe(false);
|
|
expect(notEmpty.asymmetricMatch('')).toBe(false);
|
|
});
|
|
|
|
if (typeof Map !== 'undefined') {
|
|
it("matches a non empty map", function () {
|
|
var notEmpty = new jasmineUnderTest.NotEmpty();
|
|
var fullMap = new Map([['one',1]]);
|
|
var emptyMap = new Map();
|
|
|
|
expect(notEmpty.asymmetricMatch(fullMap)).toBe(true);
|
|
expect(notEmpty.asymmetricMatch(emptyMap)).toBe(false);
|
|
});
|
|
}
|
|
|
|
if (typeof Set !== 'undefined') {
|
|
it("matches a non empty map", function () {
|
|
var notEmpty = new jasmineUnderTest.NotEmpty();
|
|
var filledSet = new Set([1,2,2,2,2,34]);
|
|
|
|
expect(notEmpty.asymmetricMatch(filledSet)).toBe(true);
|
|
});
|
|
}
|
|
});
|