Version 1
[yaffs-website] / node_modules / uncss / node_modules / qs / test / utils.js
diff --git a/node_modules/uncss/node_modules/qs/test/utils.js b/node_modules/uncss/node_modules/qs/test/utils.js
new file mode 100644 (file)
index 0000000..4a8d824
--- /dev/null
@@ -0,0 +1,9 @@
+'use strict';
+
+var test = require('tape');
+var utils = require('../lib/utils');
+
+test('merge()', function (t) {
+    t.deepEqual(utils.merge({ a: 'b' }, { a: 'c' }), { a: ['b', 'c'] }, 'merges two objects with the same key');
+    t.end();
+});