mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
7907bfc4c9
Original: 2606e295c7
8 lines
243 B
TypeScript
8 lines
243 B
TypeScript
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")
|
|
});
|