blob: bb9aab1f4314e41bdfab26ea718594ba21052c85 (
plain)
1
2
3
4
5
6
7
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
Deno.test("whitespaceShouldBeWhitespace", function (): void {
assertEquals(parse(["-x", "\t"]).x, "\t");
});
|