3 var getPropertyNames = require('../../object/get-property-names')
4 , isPlainObject = require('../../object/is-plain-object');
6 module.exports = function (t, a) {
8 a(isPlainObject(x), true, "Plain object");
9 a.deep(getPropertyNames(x), [], "No properties");
11 a.deep(getPropertyNames(x), ['foo'], "Extensible");
13 a.deep(t('raz', 'dwa', 3), { raz: true, dwa: true, 3: true },
14 "Arguments handling");