[commits] Horde branch master updated. acbf6961e5491aa2f01084bbaf09b37192e8c9da

Gunnar Wrobel p at rdus.de
Sun Jun 26 13:07:50 UTC 2011


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

from: ca541b3085fa8fbc508243119c3dc276a5bd4965

30ed2f5 phpdoc.
1a97ff1 Move fixtures.
71cfdd2 Convert the all day test to PHPUnit testing.
f0b19dd Convert the fromicalendar test.
6a047c8 The "toicalendar" test requires too much boilerplate and is hard to convert. Leave the stub incomplete for now though it is near to complete.
acbf696 Testing issue 7608 also hits some problems with recurrence exception handling.

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

commit 30ed2f5d220085e2909de1db9149a897027a4634
Author: Gunnar Wrobel <p at rdus.de>
Date:   Fri Jun 24 12:41:56 2011 +0200

    phpdoc.

 kronolith/test/Kronolith/AllTests.php |    4 ++--
 kronolith/test/Kronolith/Autoload.php |    2 +-
 kronolith/test/Kronolith/TestCase.php |    4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

http://git.horde.org/horde-git/-/commit/30ed2f5d220085e2909de1db9149a897027a4634

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

commit 1a97ff140ab2570a555918d5284bc7c747537f4c
Author: Gunnar Wrobel <p at rdus.de>
Date:   Fri Jun 24 12:54:40 2011 +0200

    Move fixtures.

 kronolith/test/Kronolith/ToDo/allday.ics            |   23 --------------
 kronolith/test/Kronolith/ToDo/bug7068.ics           |   31 -------------------
 kronolith/test/Kronolith/ToDo/fromicalendar.ics     |   28 -----------------
 kronolith/test/Kronolith/fixtures/allday.ics        |   23 ++++++++++++++
 kronolith/test/Kronolith/fixtures/bug7068.ics       |   31 +++++++++++++++++++
 kronolith/test/Kronolith/fixtures/fromicalendar.ics |   28 +++++++++++++++++
 6 files changed, 82 insertions(+), 82 deletions(-)
 delete mode 100644 kronolith/test/Kronolith/ToDo/allday.ics
 delete mode 100644 kronolith/test/Kronolith/ToDo/bug7068.ics
 delete mode 100644 kronolith/test/Kronolith/ToDo/fromicalendar.ics
 create mode 100644 kronolith/test/Kronolith/fixtures/allday.ics
 create mode 100644 kronolith/test/Kronolith/fixtures/bug7068.ics
 create mode 100644 kronolith/test/Kronolith/fixtures/fromicalendar.ics

http://git.horde.org/horde-git/-/commit/1a97ff140ab2570a555918d5284bc7c747537f4c

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

commit 71cfdd251d09b3e08e1a39f857a88c4a63992b94
Author: Gunnar Wrobel <p at rdus.de>
Date:   Fri Jun 24 12:55:48 2011 +0200

    Convert the all day test to PHPUnit testing.

 kronolith/test/Kronolith/Autoload.php               |    5 +-
 kronolith/test/Kronolith/Integration/AllDayTest.php |   73 +++++++++++++++++++
 kronolith/test/Kronolith/Stub/Driver.php            |    6 ++
 kronolith/test/Kronolith/ToDo/allday.phpt           |   52 -------------
 4 files changed, 83 insertions(+), 53 deletions(-)
 create mode 100644 kronolith/test/Kronolith/Integration/AllDayTest.php
 create mode 100644 kronolith/test/Kronolith/Stub/Driver.php
 delete mode 100644 kronolith/test/Kronolith/ToDo/allday.phpt

http://git.horde.org/horde-git/-/commit/71cfdd251d09b3e08e1a39f857a88c4a63992b94

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

commit f0b19dd6d91aea6937a1c30257bd8d63ff7594a1
Author: Gunnar Wrobel <p at rdus.de>
Date:   Fri Jun 24 14:33:33 2011 +0200

    Convert the fromicalendar test.

 kronolith/test/Kronolith/Integration/FromIcalendarTest.php |   87 ++++++++++++
 kronolith/test/Kronolith/ToDo/fromicalendar.phpt           |   61 --------
 2 files changed, 87 insertions(+), 61 deletions(-)
 create mode 100644 kronolith/test/Kronolith/Integration/FromIcalendarTest.php
 delete mode 100644 kronolith/test/Kronolith/ToDo/fromicalendar.phpt

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

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

commit 6a047c8f6f29be7d4368816b51baa4cda6f07e6d
Author: Gunnar Wrobel <p at rdus.de>
Date:   Fri Jun 24 15:31:27 2011 +0200

    The "toicalendar" test requires too much boilerplate and is hard to convert. Leave the stub incomplete for now though it is near to complete.

 kronolith/test/Kronolith/Autoload.php                    |    1 +
 kronolith/test/Kronolith/Integration/ToIcalendarTest.php |   90 ++++++++++++++
 kronolith/test/Kronolith/Stub/Driver.php                 |    5 +
 kronolith/test/Kronolith/Stub/Registry.php               |   24 ++++
 kronolith/test/Kronolith/fixtures/export1.ics            |   23 ++++
 5 files changed, 143 insertions(+), 0 deletions(-)
 create mode 100644 kronolith/test/Kronolith/Integration/ToIcalendarTest.php
 create mode 100644 kronolith/test/Kronolith/Stub/Registry.php
 create mode 100644 kronolith/test/Kronolith/fixtures/export1.ics

http://git.horde.org/horde-git/-/commit/6a047c8f6f29be7d4368816b51baa4cda6f07e6d

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

commit acbf6961e5491aa2f01084bbaf09b37192e8c9da
Author: Gunnar Wrobel <p at rdus.de>
Date:   Fri Jun 24 16:39:10 2011 +0200

    Testing issue 7608 also hits some problems with recurrence exception handling.
    
    Why does this call back to the driver in Event.php?

 kronolith/test/Kronolith/Integration/FromIcalendarTest.php |   46 ++++++++----
 1 files changed, 32 insertions(+), 14 deletions(-)

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




More information about the commits mailing list