arr.should.be.array();
str.should.not.be.array();

expect(arr).to.be.array();
expect(str).not.to.be.array();

assert.array(arr, 'is array');

arr.should.be.ofSize(3);
arr.should.not.be.ofSize(4);

expect(arr).to.be.ofSize(3);
expect(str).not.to.be.ofSize(4);

assert.ofSize(arr, 3, 'has 3 elements');

arr.should.be.equalTo(otherArr);
arr.should.not.be.equalTo(anotherArr);

expect(arr).to.be.equalTo(otherArr);
expect(str).to.be.not.equalTo(anotherArr);

assert.equalTo(arr, otherArr, 'is equal to');

arr.should.be.containing(1);
arr.should.not.be.containing(4);

expect(arr).to.be.containing(1);
expect(str).to.be.not.containing(4);