ocarina/tests/core/version.c

16 lines
276 B
C

/*
* Copyright 2013 (c) Anna Schumaker.
*/
#include <core/version.h>
#include <tests/test.h>
static void test_version()
{
test_equal(get_version(), CONFIG_VERSION);
test_equal(OCARINA_NAME, "ocarina-test");
}
DECLARE_UNIT_TESTS(
UNIT_TEST("Version", test_version),
);