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