summaryrefslogtreecommitdiff
path: root/tests/pke-at-test-main.cpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-10-17 18:01:11 -0400
committerJonathan Bradley <jcb@pikum.xyz>2025-10-17 18:01:11 -0400
commit6ca4d7a6b6c896cfcba0b3dfe02bf135b5c8ead7 (patch)
treee35928104292b91693489bd3fb1952b70b4916ce /tests/pke-at-test-main.cpp
parent464e3ff178545c21de8e2d64f8c8cd7dec4d5384 (diff)
pke-at: first-pass parse planning center json
Diffstat (limited to 'tests/pke-at-test-main.cpp')
-rw-r--r--tests/pke-at-test-main.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/pke-at-test-main.cpp b/tests/pke-at-test-main.cpp
index 367bbf4..dba3d0f 100644
--- a/tests/pke-at-test-main.cpp
+++ b/tests/pke-at-test-main.cpp
@@ -1,5 +1,6 @@
-#include "./pke-at-test-dummy.h"
+#include "pke-at-test-dummy.h"
+#include "pke-at-test-data-parser.h"
#include <pke/pk.h>
@@ -9,10 +10,11 @@ int main(int argc, char *argv[])
(void)argv;
pk_test_group_get *fns[] = {
- pke_at_test_get_dummy
+ pke_at_test_get_dummy,
+ pke_at_test_get_data_parser,
};
- pk_test_run_test_groups(fns, 1);
+ pk_test_run_test_groups(fns, 2);
return 0;
}