From 151ce0266eb4de2c8fc600c81c192a5f791b6169 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 9 Oct 2019 17:10:09 -0400 Subject: Move everything into std subdir --- std/flags/whitespace_test.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 std/flags/whitespace_test.ts (limited to 'std/flags/whitespace_test.ts') diff --git a/std/flags/whitespace_test.ts b/std/flags/whitespace_test.ts new file mode 100755 index 000000000..9e6ba7115 --- /dev/null +++ b/std/flags/whitespace_test.ts @@ -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(): void { + assertEquals(parse(["-x", "\t"]).x, "\t"); +}); -- cgit v1.2.3