aboutsummaryrefslogtreecommitdiff
path: root/tests/test_main.c
diff options
context:
space:
mode:
authorDavid Moc <personal@cdatgoose.org>2026-06-03 02:26:11 +0200
committerDavid Moc <personal@cdatgoose.org>2026-06-03 02:26:11 +0200
commitc6d44836fd8ed1442e01825cb0f9f97e7bf11515 (patch)
treed0e8cededdecafdf27476a744ac2d892d5a18620 /tests/test_main.c
parentb68766967c86a6a789d65772f69f7f44939ebdf2 (diff)
Harden editor logging and packaging
Diffstat (limited to 'tests/test_main.c')
-rw-r--r--tests/test_main.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/test_main.c b/tests/test_main.c
new file mode 100644
index 0000000..6a8dc5f
--- /dev/null
+++ b/tests/test_main.c
@@ -0,0 +1,13 @@
+#include "test_core.h"
+
+int main(void) {
+ test_plugin_identity();
+ test_plugin_slots_and_exports();
+ test_plugin_objects_and_text();
+ test_buffer_editing_and_undo();
+ test_buffer_selection_and_search();
+ test_buffer_file_round_trip();
+ test_completion_helpers();
+ test_path_helpers();
+ return 0;
+}