modules/__tests__/mset-test.js
import expect from 'expect'
import db from './db'
describe('mset', () => {
describe('when given a list of fields/values', () => {
it('sets all keys to the correct values', () =>
db.mset('a', 'one', 'b', 'two', 'c', 'three').then(() =>
db.mget('a', 'b', 'c').then((values) => {
expect(values).toEqual([ 'one', 'two', 'three' ])
})
)
)
})
describe('when given a hash', () => {
it('sets all keys to the correct values', () =>
db.mset({ a: 'one', b: 'two', c: 'three' }).then(() =>
db.mget('a', 'b', 'c').then((values) => {
expect(values).toEqual([ 'one', 'two', 'three' ])
})
)
)
})
})