ocarina/tests/core/history.c

17 lines
272 B
C
Raw Normal View History

/*
* Copyright 2015 (c) Anna Schumaker.
*/
#include <core/history.h>
#include <tests/test.h>
static void test_init()
{
struct queue *q = history_get_queue();
test_not_equal((void *)q, NULL);
}
DECLARE_UNIT_TESTS(
UNIT_TEST("History Initialization", test_init),
);