Files
angular.js/test/Base64Test.js
Adam Abrons c9c176a53b angular.js
2010-01-05 16:36:58 -08:00

6 lines
157 B
JavaScript

Base64Test = TestCase('Base64Test');
Base64Test.prototype.testEncodeDecode = function(){
assertEquals(Base64.decode(Base64.encode('hello')), 'hello');
};