This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
ics_cli/unit-tests/test_parse_ics_file.c

15 lines
273 B
C
Raw Normal View History

2024-07-09 08:08:01 +02:00
#include "../src/list_handling.h"
#include "../src/parse_ics.h"
#include <stdio.h>
int main() {
// initialize empty list
struct event *head = NULL;
2024-11-17 10:10:52 +01:00
parse_ics_file("../../tests/calendar.ics", &head);
2024-07-09 08:08:01 +02:00
2024-11-17 10:10:52 +01:00
parse_ics_file("../../tests/failed_cal.ics", &head);
return 0;
2024-07-09 08:08:01 +02:00
}