diff options
| author | Andy Hayden <andyhayden1@gmail.com> | 2019-01-12 13:50:04 -0800 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-12 16:50:04 -0500 |
| commit | f626b04ebe320a96a220af29595c6ca84cf9a10a (patch) | |
| tree | ea059a796fed0650060398a8d347ae001d6f621c /ws/sha1_test.ts | |
| parent | 7d6a0f64f20004f89f5e2cbfcf7941f0a8dafd21 (diff) | |
Reorgnanize repos, examples and tests (denoland/deno_std#105)
Original: https://github.com/denoland/deno_std/commit/c5e6e015b5be19027f60c19ca86283d12f9258f3
Diffstat (limited to 'ws/sha1_test.ts')
| -rw-r--r-- | ws/sha1_test.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ws/sha1_test.ts b/ws/sha1_test.ts new file mode 100644 index 000000000..b385f18da --- /dev/null +++ b/ws/sha1_test.ts @@ -0,0 +1,8 @@ +import { assertEqual, test } from "../testing/mod.ts"; +import { Sha1 } from "./sha1.ts"; + +test(function testSha1() { + const sha1 = new Sha1(); + sha1.update("abcde"); + assertEqual(sha1.toString(), "03de6c570bfe24bfc328ccd7ca46b76eadaf4334"); +}); |
