File: check_tty.c

package info (click to toggle)
gcal 4.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,952 kB
  • sloc: ansic: 98,660; sh: 8,454; perl: 2,088; awk: 1,531; makefile: 614; sed: 166
file content (28 lines) | stat: -rw-r--r-- 397 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include "../config.h"
#include <check.h>
#include <stdlib.h>


START_TEST(test_gcal_dummy)
{
    ck_assert_int_eq(254, 254);
}
END_TEST

Suite *gcal_suite_tty(void)
{
    Suite *s;
    TCase *tc_core;

    s = suite_create("GCAL.tty");

    /* Core test case */
    tc_core = tcase_create("tty");

    tcase_add_test(tc_core, test_gcal_dummy);

    suite_add_tcase(s, tc_core);

    return s;
}