tree-sitter/spec/runtime/arithmetic_spec.cpp

12 lines
200 B
C++
Raw Normal View History

#include "spec_helper.h"
2013-12-17 13:14:41 -08:00
#include "../fixtures/parsers/arithmetic.c"
START_TEST
2013-12-17 13:14:41 -08:00
describe("arithmetic", []() {
it("parses_numbers", [&]() {
2013-12-17 13:14:41 -08:00
ts_parse_arithmetic("5");
});
});
END_TEST