summaryrefslogtreecommitdiff
path: root/std/uuid/test.ts
blob: 1e6e981543054c573f1f6f20d87808a45cf58c47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env -S deno run
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { runIfMain } from "../testing/mod.ts";

// Generic Tests
import "./tests/isNil.ts";

// V4 Tests
import "./tests/v4/validate.ts";
import "./tests/v4/generate.ts";

runIfMain(import.meta);