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

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

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

runIfMain(import.meta);