tree-sitter/spec/runtime/arithmetic_spec.cpp
2013-12-28 16:55:51 -08:00

12 lines
No EOL
200 B
C++

#include "spec_helper.h"
#include "../fixtures/parsers/arithmetic.c"
START_TEST
describe("arithmetic", []() {
it("parses_numbers", [&]() {
ts_parse_arithmetic("5");
});
});
END_TEST