aboutsummaryrefslogtreecommitdiff
path: root/src/tests/test2.c
blob: dc24f28ddf491e0c21ddafebfc5c815b7c0d5ea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "test-util.h"

int main(void)
{
    description("Test _test_module in c");
    plan(3);

    ok(0, "test something");
    is_s("kek", "kek", "test kek");
    is_i(1, 1, "test 1");

    return conclude();
}