move test file out of tests dir in flags module (denoland/deno_std#293)

Original: e80f144890
This commit is contained in:
Axetroy 2019-03-20 01:24:11 +08:00 committed by Ryan Dahl
parent adb19cbae3
commit aae6ea51a4
14 changed files with 52 additions and 52 deletions

8
flags/whitespace_test.ts Executable file
View file

@ -0,0 +1,8 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
test(function whitespaceShouldBeWhitespace() {
assertEquals(parse(["-x", "\t"]).x, "\t");
});