mirror of
https://github.com/denoland/deno.git
synced 2024-11-05 09:04:41 -05:00
17 lines
433 B
TypeScript
17 lines
433 B
TypeScript
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||
|
import { assert } from "../../testing/asserts.ts";
|
||
|
import { test } from "../../testing/mod.ts";
|
||
|
// @ts-ignore
|
||
|
import { NIL_UUID, isNil } from "../mod.ts";
|
||
|
|
||
|
test({
|
||
|
name: "[UUID] isNil",
|
||
|
fn(): void {
|
||
|
const nil = NIL_UUID;
|
||
|
const u = "582cbcff-dad6-4f28-888a-e062ae36bafc";
|
||
|
assert(isNil(nil));
|
||
|
assert(!isNil(u));
|
||
|
console.log("");
|
||
|
}
|
||
|
});
|