test: move all module tests to the test/ directory

This commit is contained in:
2025-11-01 10:12:18 +00:00
parent a68b9f7ba7
commit bd2fe50ec9
32 changed files with 5 additions and 5 deletions

11
test/ds/simple.c Normal file
View File

@@ -0,0 +1,11 @@
#include <blue/ds/string.h>
int main(void)
{
b_string *string = B_CSTR("Hello, world!");
printf("string object = ");
b_object_to_string(string, b_stdout);
printf("\n");
b_string_unref(string);
return 0;
}