Add SJIS test
This commit is contained in:
parent
4690e2c53e
commit
9500309d48
1 changed files with 15 additions and 0 deletions
|
@ -14,5 +14,20 @@ test('SJIS from char', function (t) {
|
|||
t.equal(toSJIS('¬'), 0x81ca,
|
||||
'Should return correct SJIS value')
|
||||
|
||||
t.equal(toSJIS('≧'), 0x8186,
|
||||
'Should return correct SJIS value')
|
||||
|
||||
t.equal(toSJIS('⊥'), 0x81db,
|
||||
'Should return correct SJIS value')
|
||||
|
||||
t.equal(toSJIS('愛'), 0x88a4,
|
||||
'Should return correct SJIS value')
|
||||
|
||||
t.equal(toSJIS('衣'), 0x88df,
|
||||
'Should return correct SJIS value')
|
||||
|
||||
t.equal(toSJIS('蔭'), 0x88fc,
|
||||
'Should return correct SJIS value')
|
||||
|
||||
t.end()
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue