mirror of
https://github.com/denoland/deno.git
synced 2025-09-30 06:04:48 +00:00
move test file out of tests dir in flags module (denoland/deno_std#293)
Original: e80f144890
This commit is contained in:
parent
adb19cbae3
commit
aae6ea51a4
14 changed files with 52 additions and 52 deletions
8
flags/whitespace_test.ts
Executable file
8
flags/whitespace_test.ts
Executable 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");
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue