Implement bright_ambassador

This commit is contained in:
Florian Märkl 2018-11-17 11:43:36 +01:00
commit 1162b26759
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
7 changed files with 155 additions and 4 deletions

View file

@ -18,6 +18,7 @@
#include <munit.h>
extern MunitTest tests_http[];
extern MunitTest tests_rpcrypt[];
static MunitSuite suites[] = {
{
@ -27,6 +28,13 @@ static MunitSuite suites[] = {
1,
MUNIT_SUITE_OPTION_NONE
},
{
"/rpcrypt",
tests_rpcrypt,
NULL,
1,
MUNIT_SUITE_OPTION_NONE
},
{ NULL, NULL, NULL, 0, MUNIT_SUITE_OPTION_NONE }
};