Welcome to mirror list, hosted at ThFree Co, Russian Federation.

table_spec.lua « spec - github.com/Yonaba/Moses.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ccf2bf3b2db88d17b867346b91537bcdb7f123f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
require 'luacov'
local M = require 'moses'

describe('Table functions specs', function()

  describe('clear', function()
	
		it('', function()
			local t = M.clear({'a', true, 'hello'})
			assert.is_true(M.isEqual(t,{}))
			assert.is_nil(next(t))
		end)
	
	end)
	
	describe('each', function()

		it('provides values and iteration count ', function()
		  local t = {4,2,1}
		  local inc = 0
		  M.each(t,function(v, i)
			inc = inc+1
			assert.equal(i,inc)
			assert.equal(t[i],v)
		  end)
		end)  
	  
		it('can reference the given table', function()
		  local t = {1,2,3}
		  M.each(t,function(v,i,mul)
			t[i] = v*mul
		  end,5)
		  assert.is_true(M.isEqual(t,{5,10,15}))
		end)
		
		it('iterates over non-numeric keys and objects', function()
		  local t = {one = 1, two = 2, three = 3}
		  local copy = {}
		  M.each(t,function(v,i) copy[i] = v end)
		  assert.is_true(M.isEqual(t,copy))
		end)

	end)  

  describe('eachi', function()
  
    it('provides values and iteration count for integer keys only, in a sorted way', function()
      local t = {4,2,1}
      local inc = 0
      M.eachi(t,function(v,i)
        inc = inc+1
        assert.equal(i,inc)
        assert.equal(t[i],v)
      end)
    end)  

    it('ignores non-integer keys', function()
      local t = {a = 1, b = 2, [0] = 1, [-1] = 6, 3, x = 4, 5}
      local rk = {-1, 0, 1, 2}
      local rv = {6, 1, 3, 5}
      local inc = 0
      M.eachi(t,function(v,i)
        inc = inc+1
        assert.equal(i,rk[inc])
        assert.equal(v,rv[inc])
      end)
    end)  
    
  end)  
 
  describe('at', function()
  
    it('returns an array of values at numeric keys', function()
      local t = {4,5,6}
      local values = M.at(t,1,2,3)
      assert.is_true(M.isEqual(values, t))
      
      local t = {a = 4, bb = true, ccc = false}
      local values = M.at(t,'a', 'ccc')
      assert.is_true(M.isEqual(values, {4, false}))       
    end)
    
  end)
  
  describe('adjust', function()
  
    it('adjusts a given value in a table using a function', function()
      local double = function(v) return v * 2 end
      local t = {1,2,3}
      assert.is_true(M.isEqual(M.adjust(t,1,double),{2,2,3}))
      assert.is_true(M.isEqual(M.adjust(t,2,double),{1,4,3}))
      assert.is_true(M.isEqual(M.adjust(t,3,double),{1,2,6}))
    end)
    
    it('adjusts a given value in a table using a value', function()
      local t = {1,2,3}
      assert.is_true(M.isEqual(M.adjust(t,1,5),{5,2,3}))
      assert.is_true(M.isEqual(M.adjust(t,2,-2),{1,-2,3}))
    end)
    
    it('throws an error if key is not found in table', function()
      local double = function(v) return v * 2 end
      local t = {x = 1}
      assert.error(function() M.adjust(t,'y', 2) end)
    end)    
    
  end)  
  
  describe('count', function()
    
    it('count the occurences of value in a list', function()
      assert.equal(M.count({1,1,2,3,3,3,2,4,3,2},1),2)
      assert.equal(M.count({1,1,2,3,3,3,2,4,3,2},2),3)
      assert.equal(M.count({1,1,2,3,3,3,2,4,3,2},3),4)
      assert.equal(M.count({1,1,2,3,3,3,2,4,3,2},4),1)
      assert.equal(M.count({1,1,2,3,3,3,2,4,3,2},5),0)
      assert.equal(M.count({false, false, true},false),2)
      assert.equal(M.count({false, false, true},true),1)
      assert.equal(M.count({{1,1},{1,1},{1,1},{2,2}},{1,1}),3)
      assert.equal(M.count({{1,1},{1,1},{1,1},{2,2}},{2,2}),1)    
    end)
    
    it('defaults to size when value is not given', function()
      assert.equal(M.count({1,1,2,3,3,3,2,4,3,2}),M.size({1,1,2,3,3,3,2,4,3,2}))
      assert.equal(M.count({false, false, true}),M.size({false, false, true}))  
    end)
  end)
  
  describe('countf', function()
    it('count the occurences of values passing an iterator test in a list', function()
      assert.equal(M.countf({1,2,3,4,5,6}, function(v) return v%2==0 end),3)
      assert.equal(M.countf({print, pairs, ipairs}, function(v) return type(v)=='function' end),3)
    end)
  end)
  
  describe('cycle', function()
    
    it('loops n times on a list', function()
      local times = 3
      local t = {1,2,3,4,5}
      local kv = {}
      for v,k in M.cycle(t,times) do
        assert.equal(t[k],v)
        kv[#kv+1] = v
      end
      for k,v in ipairs(kv) do
        assert.equal(M.count(kv,v),times)
      end
    end)
    
    it('support array-like and map-like tables', function()
      local times = 10
      local t = {x = 1, z = 2}
      local keys = {}
      local values = {}
      for v,k in M.cycle(t,times) do
        assert.equal(t[k],v)
        keys[#keys+1] = k
        values[#values+1] = v
      end
      for k,v in ipairs(keys) do
        assert.equal(M.count(keys,v),times)
      end
      for k,v in ipairs(values) do
        assert.equal(M.count(values,v),times)
      end      
    end)
    
    it('n defaults to 1, if not supplied', function()
      local t = {1,2,3,4,5}
      for v,k in M.cycle(t) do
        t[k] = v + 1
      end
      M.each(t, function(v, k)
        assert.equal(v, k + 1)
      end)
    end)   
    
    it('if n is negative or equal to 0, it does nothing', function()
      local t = {1,2,3,4,5}
      for v,k in M.cycle(t, 0) do
        t[k] = v + 1
      end
      for v,k in M.cycle(t, -2) do
        t[k] = v + 1
      end      
      M.each(t, function(v, k)
        assert.equal(v, k)
      end)
    end)     
  end)
  
  describe('map', function()
  
    it('applies an iterator function over each key-value pair ', function()
      assert.is_true(M.isEqual(M.map({1,2,3},function(v) 
          return v+10 
        end),{11,12,13}))
    end)

    it('iterates over non-numeric keys and objects', function()
      assert.is_true(M.isEqual(M.map({a = 1, b = 2},function(v,k) 
          return k..v 
        end),{a = 'a1',b = 'b2'}))
    end)

    it('maps key-value pairs to key-value pairs', function()
      assert.is_true(M.isEqual(M.map({a = 1, b = 2}, function(v, k)
          return k .. k, v + 10
        end), {aa = 11, bb = 12}))
    end)
    
  end)
  
  describe('reduce', function()
  
    it('folds a collection (left to right) from an initial state', function()
      assert.equal(M.reduce({1,2,3,4},function(memo,v) return memo+v end,0),10)
    end)
    
    it('initial state defaults to the first value when not given', function()
      assert.equal(M.reduce({'a','b','c'},function(memo,v) return memo..v end),'abc')
    end)    
  
    it('supports arrays of booleans', function()
      assert.equal(M.reduce({true, false, true, true},function(memo,v) return memo and v end), false)
      assert.equal(M.reduce({true, true, true},function(memo,v) return memo and v end), true)
      assert.equal(M.reduce({false, false, false},function(memo,v) return memo and v end), false)
      assert.equal(M.reduce({false, false, true},function(memo,v) return memo or v end), true)
    end)
    
  end)
	
  describe('reduceby', function()
  
    it('folds a collection (left to right) for specific values', function()
			local function even(v) return v%2==0 end
			local function odd(v) return v%2~=0 end
      assert.equal(M.reduceby({1,2,3,4},function(memo,v) return memo+v end,even,0), 6)
      assert.equal(M.reduceby({1,2,3,4},function(memo,v) return memo+v end,odd,0), 4)
    end)
   
  end)	
  
  describe('reduceRight', function()
  
    it('folds a collection (right to left) from an initial state', function()
      assert.equal(M.reduceRight({1,2,4,16},function(memo,v) return memo/v end,256),2)
    end)
    
    it('initial state defaults to the first value when not given', function()
      assert.equal(M.reduceRight({'a','b','c'},function(memo,v) return memo..v end),'cba')
    end)
    
  end)

  describe('mapReduce', function()
  
    it('folds a collection (left to right) saving intermediate states', function()
      assert.is_true(M.isEqual(M.mapReduce({1,2,4,16},function(memo,v) 
          return memo*v 
        end,0),{0,0,0,0}))
    end)
    
    it('initial state defaults to the first value when not given', function()
      assert.is_true(M.isEqual(M.mapReduce({'a','b','c'},function(memo,v) 
          return memo..v 
        end),{'a','ab','abc'}))
    end)  
  
  end)

  describe('mapReduceRight', function()
  
    it('folds a collection (right to left) saving intermediate states', function()
      assert.is_true(M.isEqual(M.mapReduceRight({1,2,4,16},function(memo,v) 
          return memo/v 
        end,256),{16,4,2,2}))
    end)
    
    it('initial state defaults to the first value when not given', function()
      assert.is_true(M.isEqual(M.mapReduceRight({'a','b','c'},function(memo,v) 
          return memo..v 
        end),{'c','cb','cba'}))
    end)
    
  end)  

  describe('include', function()
  
    it('looks for a value in a collection, returns true when found', function()
      assert.is_true(M.include({6,8,10,16,29},16))
    end)
    
    it('returns false when value was not found', function()
      assert.is_false(M.include({6,8,10,16,29},1))
    end)
    
    it('can lookup for a object', function()
      assert.is_true(M.include({6,{18,{2,6}},10,{18,{2,{3}}},29},{18,{2,{3}}}))
    end)    
    
    it('given an iterator, return the first value passing a truth test', function()
      assert.is_true(M.include({'a','B','c'}, function(array_value)
        return (array_value:upper() == array_value)
      end))
    end) 
    
  end)  
    
  describe('detect', function()
  
    it('looks for the first occurence of value, returns the key where it was found', function()
      assert.equal(M.detect({6,8,10,16},8),2)
    end)
    
    it('returns nil when value was not found', function()
      assert.is_nil(M.detect({nil,true,0,true,true},false))
    end)
    
    it('can lookup for a object', function()
      assert.equal(M.detect({6,{18,{2,6}},10,{18,{2,{3}}},29},{18,{2,6}}),2)
    end)    
    
    it('given an iterator, return the key of the first value passing a truth test', function()
      assert.equal(M.detect({'a','B','c'}, function(array_value)
        return (array_value:upper() == array_value)
      end),2)
    end)   
  
  end) 
 
	describe('where', function()
	
    it('Returns all values in a list having all of a given set of properties', function()
      local set = {
				{a = 1, b = 2},
				{a = 2, b = 2},
				{a = 2, b = 4},
				{a = 3, b = 4}
			}
      assert.is_true(M.isEqual(M.where(set, {a = 2}), {set[2],set[3]}))
      assert.is_true(M.isEqual(M.where(set, {b = 4}), {set[3],set[4]}))
      assert.is_true(M.isEqual(M.where(set, {a = 2, b = 2}), {set[2]}))
    end)
    
    it('returns nil when value was not found', function()
      local set = {
				{a = 1, b = 2},
				{a = 2, b = 2},
			}
      assert.is_nil(M.where(set, {a = 3}))
      assert.is_nil(M.where(set, {b = 1}))
    end) 	
	
	end)
	
  describe('findWhere', function()
  
    it('Returns the first value in a list having all of a given set of properties', function()
      local a = {a = 1, b = 2}
      local b = {a = 2, b = 3}
      local c = {a = 3, b = 4}
      assert.equal(M.findWhere({a, b, c}, {a = 3, b = 4}), c)
    end)
    
    it('returns nil when value was not found', function()
      local a = {a = 1, b = 2}
      local b = {a = 2, b = 3}
      local c = {a = 3, b = 4}
      assert.is_nil(M.findWhere({a, b, c}, {a = 3, b = 0}))
    end) 
  
  end) 
   
  describe('select', function()
  
    it('collects all values passing a truth test with an iterator', function()
      assert.is_true(M.isEqual(M.select({7,6,5,4,3,2,1}, function(value) 
          return (value%2==0)
        end),{6,4,2}))
        
      assert.is_true(M.isEqual(M.select({7,6,5,4,3,2,1}, function(value) 
          return (value%2~=0)
        end),{7,5,3,1}))        
    end)
    
  end) 
   
  describe('reject', function()
  
    it('collects all values failing a truth test with an iterator', function()
      assert.is_true(M.isEqual(M.reject({7,6,5,4,3,2,1}, function(value) 
          return (value%2==0)
        end),{7,5,3,1}))
        
      assert.is_true(M.isEqual(M.reject({7,6,5,4,3,2,1}, function(value) 
          return (value%2~=0)
        end),{6,4,2}))        
    end)
    
  end) 
    
  describe('all', function()
  
    it('returns whether all elements matches a truth test', function()
      assert.is_true(M.all({2,4,6}, function(value) 
          return (value%2==0)
        end))
        
      assert.is_false(M.all({false,true,false}, function(value) 
          return value == false
        end))        
    end) 
    
  end) 
 
  describe('invoke', function()
  
    it('calls an iterator over each object, passing it as a first arg', function()
      assert.is_true(M.isEqual(M.invoke({'a','bea','cdhza'},string.len),
        {1,3,5}))

      assert.is_true(M.isEqual(M.invoke({{2,3,2},{13,8,10},{0,-5}},M.sort),
        {{2,2,3},{8,10,13},{-5,0}}))
        
      assert.is_true(M.isEqual(M.invoke({{x = 1, y = 2},{x = 3, y=4}},'x'), {1,3}))
    end)
   
    it('given a string, calls the matching object property the same way', function()
      local a = {}; function a:call() return self end
      local b, c, d = {}, {}, {}
      b.call, c.call, d.call = a.call, a.call, a.call
      assert.is_true(M.isEqual(M.invoke({a,b,c,d},'call'),
        {a,b,c,d}))        
    end)      
    
  end) 

  describe('pluck', function()
  
    it('fetches a property value in a collection of objects', function()
    
      local peoples = {
        {name = 'John', age = 23},{name = 'Peter', age = 17},
        {name = 'Steve', age = 15},{age = 33}}
        
      assert.is_true(M.isEqual(M.pluck(peoples,'age'),
        {23,17,15,33}))
      assert.is_true(M.isEqual(M.pluck(peoples,'name'),
        {'John','Peter','Steve'}))
        
    end)
   
  end) 
   
  describe('max', function()
  
    it('returns the maximum targetted property value in a collection of objects', function()    
      local peoples = {
        {name = 'John', age = 23},{name = 'Peter', age = 17},
        {name = 'Steve', age = 15},{age = 33}}        
      assert.equal(M.max(M.pluck(peoples,'age')),33)
      assert.equal(M.max(peoples,function(people) return people.age end),33)        
    end)
    
    it('directly compares items when given no iterator', function()
        assert.equal(M.max({'a','b','c'}),'c')        
    end)    
   
  end) 

  describe('min', function()
  
    it('returns the maximum targetted property value in a collection of objects', function()    
      local peoples = {
        {name = 'John', age = 23},{name = 'Peter', age = 17},
        {name = 'Steve', age = 15},{age = 33}}        
      assert.equal(M.min(M.pluck(peoples,'age')),15)
      assert.equal(M.min(peoples,function(people) return people.age end),15)        
    end)
    
    it('directly compares items when given no iterator', function()
        assert.equal(M.min({'a','b','c'}),'a')        
    end)    
  
  end)   

  describe('same', function()
  
    it('returns whether all objects from both given tables exists in each other', function()    
      local a = {'a','b','c','d'}      
      local b = {'b','a','d','c'}      
      assert.is_true(M.same(a,b))
      b[#b+1] = 'e'
      assert.is_false(M.same(a,b))
    end)  
  
  end)   
   
  describe('sort', function()
  
    it('sorts a collection with respect to a given comparison function', function()            
      assert.is_true(M.isEqual(M.sort({'b','a','d','c'}, function(a,b) 
          return a:byte() < b:byte() 
        end),{'a','b','c','d'}))
    end)

    it('uses "<" operator when no comparison function is given', function()            
      assert.is_true(M.isEqual(M.sort({'b','a','d','c'}),{'a','b','c','d'}))
    end)     
  
  end)

	describe('sortBy', function()
	
		it('sort values on the result of a transform function', function()
			assert.is_true(M.isEqual(M.sortBy({1,2,3,4,5}, math.sin), {5,4,3,1,2}))
		end)
		
		it('the transform function defaults to M.identity', function()
			assert.is_true(M.isEqual(M.sortBy({1,2,3,4,5}), {1,2,3,4,5}))
		end)

		it('transform function can be a string name property', function()
			local unsorted = {{item = 1, value = 10},{item = 2, value = 5},{item = 3, value = 8}}
			local sorted = {{item = 2, value = 5},{item = 3, value = 8},{item = 1, value = 10}}
			assert.is_true(M.isEqual(M.sortBy(unsorted, 'value'), sorted))
		end)
		
		it('can use a custom comparison function', function()
			local unsorted = {{item = 1, value = 10},{item = 2, value = 5},{item = 3, value = 8}}
			local sorted = {{item = 1, value = 10},{item = 3, value = 8},{item = 2, value = 5}}
			local function comp(a,b) return a > b end
			assert.is_true(M.isEqual(M.sortBy(unsorted, 'value', comp), sorted))
		end)		
	
	end)
  
  describe('groupBy', function()
  
    it('splits a collection into subsets of items behaving the same', function()

      assert.is_true(M.isEqual(M.groupBy({0,1,2,3,4,5,6},function(value) 
          return value%2==0 and 'even' or 'odd'
        end),{even = {0,2,4,6},odd = {1,3,5}}))
        
      assert.is_true(M.isEqual(M.groupBy({0,'a',true, false,nil,b,0.5},type),{number = {0,0.5},string = {'a'},boolean = {true,false}}))
        
      assert.is_true(M.isEqual(M.groupBy({'one','two','three','four','five'},string.len),{[3] = {'one','two'},[4] = {'four','five'},[5] = {'three'}}))
        
    end)
    
    it('can takes extra-args', function()
    
      assert.is_true(M.isEqual(M.groupBy({3,9,10,12,15}, function(v,k,x) return v%x == 0 end,2), {[false] = {3,9,15}, [true] = {10,12}}))
      assert.is_true(M.isEqual(M.groupBy({3,9,10,12,15}, function(v,k,x) return v%x == 0 end,3), {[false] = {10}, [true] = {3,9,12,15}}))
      
    end)
  
  end)   

  describe('countBy', function()
  
    it('splits a collection in subsets and counts items inside', function()

      assert.is_true(M.isEqual(M.countBy({0,1,2,3,4,5,6},function(value) 
          return value%2==0 and 'even' or 'odd'
        end),{even = 4,odd = 3}))
        
      assert.is_true(M.isEqual(M.countBy({0,'a',true, false,nil,b,0.5},type),{number = 2,string = 1,boolean = 2}))
        
      assert.is_true(M.isEqual(M.countBy({'one','two','three','four','five'},string.len),{[3] = 2,[4] = 2,[5] = 1}))
        
    end)     
  
  end)   

  describe('size', function()
  
    it('counts the very number of objects in a collection', function()      
      assert.equal(M.size {1,2,3},3)        
    end)
    
    it('counts nested tables elements as an unique value', function()      
      assert.equal(M.size {1,2,3,{4,5}},4)        
    end)

    it('leaves nil values', function()      
      assert.equal(M.size {1,2,3,nil,8},4)        
    end)
    
    it('counts objects', function()      
      assert.equal(M.size {one = 1,2,b = 3, [{}] = 'nil', 'c', [function() end] = 'foo'},6)   
    end)
    
    it('returns the size of the first arg when it is a table', function()      
      assert.equal(M.size ({1,2},3,4,5),2)   
    end)    

    it('counts the number of non-nil args when the first one is not a table', function()      
      assert.equal(M.size (1,3,4,5),4)
      assert.equal(M.size (nil,1,3,4,5),4)
      assert.equal(M.size (nil,1,3,4,nil,5),4)
    end)  
 
    it('handles nil', function()      
      assert.equal(M.size(),0)
      assert.equal(M.size(nil),0)
    end)

		
  end)   

  describe('containsKeys', function()
  
    it('returns whether a table has all the keys from a given list', function()      
      assert.is_true(M.containsKeys({1,2,3},{1,2,3}))
      assert.is_true(M.containsKeys({x = 1, y = 2},{x = 1,y =2}))
    end)
    
    it('does not compare values', function()      
      assert.is_true(M.containsKeys({1,2,3},{4,5,6}))
      assert.is_true(M.containsKeys({x = 1, y = 2},{x = 4,y = -1}))
    end)

    it('is not commutative', function()      
      assert.is_true(M.containsKeys({1,2,3,4},{4,5,6}))      
      assert.is_true(M.containsKeys({x = 1, y = 2,z = 5},{x = 4,y = -1}))
      assert.is_false(M.containsKeys({1,2,3},{4,5,6,7}))
      assert.is_false(M.containsKeys({x = 1, y = 2},{x = 4,y = -1,z = 0}))
    end)
    
  end) 

  describe('sameKeys', function()
  
    it('returns whether both tables features the same keys', function()      
      assert.is_true(M.sameKeys({1,2,3},{1,2,3}))
      assert.is_true(M.sameKeys({x = 1, y = 2},{x = 1,y =2}))
    end)
    
    it('does not compare values', function()      
      assert.is_true(M.sameKeys({1,2,3},{4,5,6}))
      assert.is_true(M.sameKeys({x = 1, y = 2},{x = 4,y = -1}))
    end)

    it('is commutative', function()      
      assert.is_false(M.sameKeys({1,2,3,4},{4,5,6}))      
      assert.is_false(M.sameKeys({x = 1, y = 2,z = 5},{x = 4,y = -1}))
      assert.is_false(M.sameKeys({1,2,3},{4,5,6,7}))
      assert.is_false(M.sameKeys({x = 1, y = 2},{x = 4,y = -1,z = 0}))
    end)
    
  end) 
   
end)