Add a test for KeyFetchToken.fromId

This commit is contained in:
Ryan Kelly 2014-03-18 17:40:01 +11:00
Родитель 98cbe02c37
Коммит c4b838ab2e
1 изменённых файлов: 21 добавлений и 0 удалений

Просмотреть файл

@ -48,6 +48,27 @@ test(
)
test(
're-creation from id works',
function (t) {
var token = null;
return KeyFetchToken.create(ACCOUNT)
.then(
function (x) {
token = x
return KeyFetchToken.fromId(token.tokenId, token);
}
)
.then(
function (x) {
t.equal(x.tokenId, token.tokenId, 'should have same id')
t.equal(x.authKey, token.authKey, 'should have same authKey')
}
)
}
)
test(
'bundle / unbundle of keys works',
function (t) {