summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/object.getownpropertydescriptors/test/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/object.getownpropertydescriptors/test/index.js')
-rw-r--r--deps/npm/node_modules/object.getownpropertydescriptors/test/index.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/deps/npm/node_modules/object.getownpropertydescriptors/test/index.js b/deps/npm/node_modules/object.getownpropertydescriptors/test/index.js
new file mode 100644
index 0000000000..618a205064
--- /dev/null
+++ b/deps/npm/node_modules/object.getownpropertydescriptors/test/index.js
@@ -0,0 +1,17 @@
+'use strict';
+
+var getDescriptors = require('../');
+var test = require('tape');
+var runTests = require('./tests');
+
+test('as a function', function (t) {
+ t.test('bad object/this value', function (st) {
+ st.throws(function () { return getDescriptors(undefined); }, TypeError, 'undefined is not an object');
+ st.throws(function () { return getDescriptors(null); }, TypeError, 'null is not an object');
+ st.end();
+ });
+
+ runTests(getDescriptors, t);
+
+ t.end();
+});