ocarina/tests/core/version.c

15 lines
232 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);
}
DECLARE_UNIT_TESTS(
UNIT_TEST("Version", test_version),
);