diff options
Diffstat (limited to 'test/moveToAngularCom/Base64Test.js')
| -rw-r--r-- | test/moveToAngularCom/Base64Test.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/moveToAngularCom/Base64Test.js b/test/moveToAngularCom/Base64Test.js new file mode 100644 index 00000000..a9353186 --- /dev/null +++ b/test/moveToAngularCom/Base64Test.js @@ -0,0 +1,5 @@ +Base64Test = TestCase('Base64Test'); + +Base64Test.prototype.testEncodeDecode = function(){ + assertEquals(Base64.decode(Base64.encode('hello')), 'hello'); +}; |
