summaryrefslogtreecommitdiff
path: root/src/isodate/tests
Commit message (Collapse)AuthorAgeFilesLines
* add incomplete month date supportFabien Loffredo2016-12-231-3/+5
|
* Add multiplication to durationClaude2015-08-041-0/+59
|
* fixing misspellingGeoffrey Fairchild2015-06-221-1/+1
|
* Duration objects are now hashableGeoffrey Fairchild2015-06-221-0/+17
|
* Merge pull request #12 from tofu-rocketry/datetime_input_handlinggweis2014-11-071-3/+9
|\ | | | | Make parse_datetime raise ISO8601Error if no 'T'
| * Make parse_datetime raise ISO8601Error if no 'T'Adrian Coveney2014-08-191-3/+9
| | | | | | | | | | | | | | | | | | - Make parse_datetime raise ISO8601Error if time designator 'T' is missing as before it would raise a ValueError that was hard to interpret. - Alter test_parse for test_datetime to check that bad inputs raise an ISO8601 error. The other tests did this, but test_datetime didn't. - Add test case where the 'T' time designator is missing from input datetime strings.
* | Merge pull request #11 from tofu-rocketry/flake_fixesgweis2014-11-071-3/+3
|\ \ | | | | | | Fix flake errors
| * | Fix flake errorsAdrian Coveney2014-08-181-3/+3
| |/
* | fix duration pickle for all protocols and all supported python versions and ↵Gerhard Weis2014-11-071-4/+22
|/ | | | variants. (closes #10)
* make flake happyGerhard Weis2014-02-277-160/+178
|
* Closes #8. Added tests stated in issue #8, but can’t reproduce this error ↵Gerhard Weis2014-02-231-15/+27
| | | | across all tested python versions.
* implement unittest2 load_tests protocolGerhard Weis2013-01-256-0/+24
|
* rename todatetime to totimedelta on Duration.Gerhard Weis2013-01-241-0/+14
| | | | | added some tests for the same function closes #4
* - raise Exception for unsupported operations with duration and date/datetime ↵Gerhard Weis2013-01-241-7/+17
| | | | | | | | objects - store year and month as Decimal in Duration object. - added test cases to support changes closes #2
* fix pickle problem with FixedOffset instancesGerhard Weis2012-10-301-3/+4
|
* * make FixedOffset unpicklableGerhard Weis2012-10-301-0/+31
|
* - round to microseconds in case provided iso date string uses higher precisionGerhard Weis2012-10-301-15/+31
|
* - fix formatting for microseconds (Jarom Loveridge)Gerhard Weis2012-10-302-2/+15
|
* make unit tests compatible with pre python 2.7 unit test moduleGerhard Weis2012-05-041-41/+36
|
* add failing test for LocalTimeZone formattingGerhard Weis2012-01-262-2/+131
|
* * support Python 3Gerhard Weis2012-01-065-0/+895
* moved tests package into isolate package