[commits] Horde branch master updated. a9e11bcd73bfa289c8886b7a17959144eb5c7a98

Jan Schneider jan at horde.org
Fri Jan 11 20:34:45 UTC 2013


The branch "master" has been updated.
The following is a summary of the commits.

from: cd1535f0f8a30b4dc03f2b2c36d6eb99904be70b

a9e11bc [jan] Convert test suite to PHPUnit.

-----------------------------------------------------------------------

commit a9e11bcd73bfa289c8886b7a17959144eb5c7a98
Author: Jan Schneider <jan at horde.org>
Date:   Fri Jan 11 21:33:29 2013 +0100

    [jan] Convert test suite to PHPUnit.

 framework/Icalendar/package.xml                                   |   92 +-
 framework/Icalendar/test/Horde/Icalendar/AttributeTest.php        |   62 +
 framework/Icalendar/test/Horde/Icalendar/CharsetTest.php          |   27 +
 framework/Icalendar/test/Horde/Icalendar/ExportTest.php           |  157 +
 framework/Icalendar/test/Horde/Icalendar/FreeBusyTest.php         |  340 ++
 framework/Icalendar/test/Horde/Icalendar/ParseTest.php            |  357 ++
 framework/Icalendar/test/Horde/Icalendar/bug_7423.phpt            |   32 -
 framework/Icalendar/test/Horde/Icalendar/charset1.phpt            |   50 -
 framework/Icalendar/test/Horde/Icalendar/common.php               |   16 -
 framework/Icalendar/test/Horde/Icalendar/empty_data.phpt          |   30 -
 framework/Icalendar/test/Horde/Icalendar/fixtures/bug7423.ics     |   11 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/charset1.ics    |   14 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/charset2.ics    |   14 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/charset3.ics    |   14 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/date.ics        |   14 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/empty.ics       |    4 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/escapes1.ics    |   28 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/escapes2.ics    |   21 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/geo1.vcf        |    4 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/geo2.vcf        |    4 +
 .../Icalendar/test/Horde/Icalendar/fixtures/line-folding-1.ics    |   13 +
 .../Icalendar/test/Horde/Icalendar/fixtures/line-folding-2.ics    |   12 +
 .../Icalendar/test/Horde/Icalendar/fixtures/line-folding-3.ics    |   13 +
 .../Icalendar/test/Horde/Icalendar/fixtures/line-folding-4.ics    |   14 +
 .../Icalendar/test/Horde/Icalendar/fixtures/line-folding-5.ics    |   16 +
 .../Icalendar/test/Horde/Icalendar/fixtures/line-folding-6.ics    |   27 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/org.vcf         |    5 +
 .../Icalendar/test/Horde/Icalendar/fixtures/quoted-params.ics     |   14 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/vcal20.ics      |   28 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/vfreebusy1.ics  |   14 +
 framework/Icalendar/test/Horde/Icalendar/fixtures/vfreebusy2.ics  |    9 +
 framework/Icalendar/test/Horde/Icalendar/geo.phpt                 |   37 -
 framework/Icalendar/test/Horde/Icalendar/iCalendar.phpt           |   36 -
 framework/Icalendar/test/Horde/Icalendar/line-folding.phpt        |  180 -
 framework/Icalendar/test/Horde/Icalendar/quoted-params.phpt       |   43 -
 framework/Icalendar/test/Horde/Icalendar/read-escapes.phpt        |   59 -
 framework/Icalendar/test/Horde/Icalendar/read-vcard-org.phpt      |   25 -
 framework/Icalendar/test/Horde/Icalendar/read-write-escapes.phpt  |   43 -
 framework/Icalendar/test/Horde/Icalendar/timezones.phpt           |  828 -----
 framework/Icalendar/test/Horde/Icalendar/vcal20.phpt              |  321 --
 framework/Icalendar/test/Horde/Icalendar/vfreebusy.phpt           |  269 --
 framework/Icalendar/test/Horde/Icalendar/write-escapes.phpt       |   51 -
 42 files changed, 1293 insertions(+), 2055 deletions(-)
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/AttributeTest.php
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/CharsetTest.php
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/ExportTest.php
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/FreeBusyTest.php
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/ParseTest.php
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/bug_7423.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/charset1.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/common.php
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/empty_data.phpt
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/bug7423.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/charset1.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/charset2.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/charset3.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/date.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/empty.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/escapes1.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/escapes2.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/geo1.vcf
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/geo2.vcf
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/line-folding-1.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/line-folding-2.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/line-folding-3.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/line-folding-4.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/line-folding-5.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/line-folding-6.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/org.vcf
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/quoted-params.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/vcal20.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/vfreebusy1.ics
 create mode 100644 framework/Icalendar/test/Horde/Icalendar/fixtures/vfreebusy2.ics
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/geo.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/iCalendar.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/line-folding.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/quoted-params.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/read-escapes.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/read-vcard-org.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/read-write-escapes.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/timezones.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/vcal20.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/vfreebusy.phpt
 delete mode 100644 framework/Icalendar/test/Horde/Icalendar/write-escapes.phpt

http://git.horde.org/horde-git/-/commit/a9e11bcd73bfa289c8886b7a17959144eb5c7a98




More information about the commits mailing list