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