summaryrefslogtreecommitdiff
path: root/src/client/util_test.js
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-08-09 19:38:49 +0300
committerAlon Levy <alon@pobox.com>2015-08-09 19:45:06 +0300
commitaafc58c9e15143dd5239950340579efee5c95979 (patch)
tree1ae5625a7049890f54c783126a4784f4a1578fdd /src/client/util_test.js
parent3b0ec2629ebee58e2b49c614d8addf2e5da23e1c (diff)
initial tests based on karma + jasmine, run with karma start
Diffstat (limited to 'src/client/util_test.js')
-rw-r--r--src/client/util_test.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/client/util_test.js b/src/client/util_test.js
new file mode 100644
index 00000000..2477aaa2
--- /dev/null
+++ b/src/client/util_test.js
@@ -0,0 +1,12 @@
+define(['util'], function(util) {
+ describe("set from object", function () {
+ it("set from object", function() {
+ expect(util.set_from_object({1:1, 2:2})).toEqual({1:1, 2:1});
+ expect(util.set_from_object({})).toEqual({});
+ });
+ it("set from array", function() {
+ expect(util.set_from_array([1, 2])).toEqual({1:1, 2:1});
+ expect(util.set_from_array([])).toEqual({});
+ });
+ });
+})