diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/env_test.c | 3 | ||||
-rw-r--r-- | tests/serd_test.c | 13 |
2 files changed, 16 insertions, 0 deletions
diff --git a/tests/env_test.c b/tests/env_test.c index bcdd996e..8e0c9205 100644 --- a/tests/env_test.c +++ b/tests/env_test.c @@ -34,6 +34,8 @@ count_prefixes(void* handle, const SerdNode* name, const SerdNode* uri) static void test_env(void) { + SerdWorld* world = serd_world_new(); + SerdNode* u = serd_node_new_string(SERD_URI, "http://example.org/foo"); SerdNode* b = serd_node_new_string(SERD_CURIE, "invalid"); SerdNode* c = serd_node_new_string(SERD_CURIE, "eg.2:b"); @@ -90,6 +92,7 @@ test_env(void) serd_node_free(u); serd_env_free(env); + serd_world_free(world); } int diff --git a/tests/serd_test.c b/tests/serd_test.c index a99ce678..15a205db 100644 --- a/tests/serd_test.c +++ b/tests/serd_test.c @@ -501,6 +501,18 @@ test_relative_uri(void) } static void +test_blank(void) +{ + assert(!serd_node_new_blank(NULL)); + + SerdNode* blank = serd_node_new_blank("b0"); + assert(serd_node_length(blank) == 2); + assert(serd_node_flags(blank) == 0); + assert(!strcmp(serd_node_string(blank), "b0")); + serd_node_free(blank); +} + +static void test_writer(const char* const path) { FILE* fd = fopen(path, "wb"); @@ -698,6 +710,7 @@ main(void) test_literal(); test_uri_from_string(); test_relative_uri(); + test_blank(); test_read_chunks(); test_read_string(); |