blob: 24a291587ba0f673b75c394ac07bd62b8b1ff731 (
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');
});
|