propane/spec/test_parsing_json.d

15 lines
188 B
D

import testparser;
import std.stdio;
int main()
{
return 0;
}
unittest
{
string input = ``;
auto parser = new Testparser.Parser(input);
assert(parser.parse() == true);
}