保誠-保戶業務員媒合平台
HelenHuang
2022-05-20 13d66456556a5c0a8f1ed519c01e7bd2f31d2160
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
var tape = require('tape')
var cyclist = require('./')
 
tape('basic put and get', function (t) {
  var list = cyclist(2)
  list.put(0, 'hello')
  list.put(1, 'world')
  t.same(list.get(0), 'hello')
  t.same(list.get(1), 'world')
  t.end()
})
 
tape('overflow put and get', function (t) {
  var list = cyclist(2)
  list.put(0, 'hello')
  list.put(1, 'world')
  list.put(2, 'verden')
  t.same(list.get(0), 'verden')
  t.same(list.get(1), 'world')
  t.same(list.get(2), 'verden')
  t.end()
})
 
tape('del', function (t) {
  var list = cyclist(2)
  list.put(0, 'hello')
  t.same(list.get(0), 'hello')
  list.del(0)
  t.ok(!list.get(0))
  t.end()
})
 
tape('multiple of two', function (t) {
  var list = cyclist(3)
  t.same(list.size, 4)
  t.end()
})