mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 03:17:30 -04:00
28 lines
832 B
JavaScript
28 lines
832 B
JavaScript
|
/*
|
||
|
* $Id: es5.js,v 0.1 2012/08/23 19:43:17 dankogai Exp dankogai $
|
||
|
*
|
||
|
* use mocha to test me
|
||
|
* http://visionmedia.github.com/mocha/
|
||
|
*/
|
||
|
var assert, Base64;
|
||
|
if (this['window'] !== this) {
|
||
|
assert = require("assert");
|
||
|
Base64 = require('../base64.js').Base64;
|
||
|
}
|
||
|
var is = function (a, e, m) {
|
||
|
return function () {
|
||
|
assert.equal(a, e, m)
|
||
|
}
|
||
|
};
|
||
|
|
||
|
if ('extendString' in Base64){
|
||
|
Base64.extendString();
|
||
|
describe('String', function () {
|
||
|
it('.toBase64', is('小飼弾'.toBase64(), '5bCP6aO85by+'));
|
||
|
it('.toBase64', is('小飼弾'.toBase64(true), '5bCP6aO85by-'));
|
||
|
it('.toBase64URI', is('小飼弾'.toBase64URI(), '5bCP6aO85by-'));
|
||
|
it('.fromBase64', is('5bCP6aO85by+'.fromBase64(), '小飼弾'));
|
||
|
it('.fromBase64', is('5bCP6aO85by-'.fromBase64(), '小飼弾'));
|
||
|
});
|
||
|
}
|