HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall_forms/buyercall/node_modules/cyclist/test.js
const test = require('brittle')
const cyclist = require('./')

test('basic put and get', function (t) {
  const list = cyclist(2)
  list.put(0, 'hello')
  list.put(1, 'world')
  t.is(list.get(0), 'hello')
  t.is(list.get(1), 'world')
  t.end()
})

test('overflow put and get', function (t) {
  const list = cyclist(2)
  list.put(0, 'hello')
  list.put(1, 'world')
  list.put(2, 'verden')
  t.is(list.get(0), 'verden')
  t.is(list.get(1), 'world')
  t.is(list.get(2), 'verden')
  t.end()
})

test('del', function (t) {
  const list = cyclist(2)
  list.put(0, 'hello')
  t.is(list.get(0), 'hello')
  list.del(0)
  t.ok(!list.get(0))
  t.end()
})

test('multiple of two', function (t) {
  const list = cyclist(3)
  t.is(list.size, 4)
  t.end()
})