blob: 46ad0942600a7dd512776f439a032fe31d853cab (
plain)
1
2
3
4
5
6
|
import { test, assertEqual } from "../../testing/mod.ts";
import { parse } from "../mod.ts";
test(function whitespaceShouldBeWhitespace() {
assertEqual(parse(["-x", "\t"]).x, "\t");
});
|