mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-03-29 00:09:01 +08:00
6 lines
157 B
JavaScript
6 lines
157 B
JavaScript
Base64Test = TestCase('Base64Test');
|
|
|
|
Base64Test.prototype.testEncodeDecode = function(){
|
|
assertEquals(Base64.decode(Base64.encode('hello')), 'hello');
|
|
};
|