File: 03-multi-cal.t

package info (click to toggle)
libical-parser-perl 1.20-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 596 kB
  • ctags: 24
  • sloc: perl: 298; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
# -*-cperl -*-
# $Id: 02parse.t 6 2005-03-20 00:35:17Z rick $
use Test::More tests => 1;
use iCal::Parser;

# test bug:
# Can't call method "year" on an undefined value at lib/iCal/Parser.pm line 298.
iCal::Parser->new(start=>'20040101')->parse_files(
    qw{ t/calendars/04recurrence.ics
        t/calendars/02event-end.ics
  });
ok(1, 'calendar w/o recurrence after one with');