summaryrefslogtreecommitdiff
path: root/ccan/strgrp/test/api_insert_two_distinct.c
diff options
context:
space:
mode:
Diffstat (limited to 'ccan/strgrp/test/api_insert_two_distinct.c')
-rw-r--r--ccan/strgrp/test/api_insert_two_distinct.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/ccan/strgrp/test/api_insert_two_distinct.c b/ccan/strgrp/test/api_insert_two_distinct.c
new file mode 100644
index 00000000..3ee8e3e5
--- /dev/null
+++ b/ccan/strgrp/test/api_insert_two_distinct.c
@@ -0,0 +1,7 @@
+#include "../test/helpers.h"
+
+int main(void) {
+ struct strgrp *ctx;
+ create(ctx, DEFAULT_SIMILARITY);
+ return two_groups_from_two(ctx, "a", NULL, "b", NULL);
+}