mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 15:40:22 +00: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');
|
||
|
|
};
|