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