mirror of
https://github.com/pevans/erc-c.git
synced 2024-11-23 23:32:45 +00:00
10 lines
138 B
C
10 lines
138 B
C
|
#include <criterion/criterion.h>
|
||
|
|
||
|
#include "log.h"
|
||
|
#include "objstore.h"
|
||
|
|
||
|
Test(objstore, init)
|
||
|
{
|
||
|
cr_assert_eq(objstore_init(), OK);
|
||
|
}
|