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