File: test_strptime_jy.py

package info (click to toggle)
jython 2.5.2-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 72,424 kB
  • sloc: python: 375,154; java: 216,094; xml: 1,413; sh: 330; ansic: 126; perl: 122; makefile: 98
file content (23 lines) | stat: -rw-r--r-- 588 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# merge into upstream test_strptime.py at some point

import unittest
from datetime import datetime
from test import test_support


class ParsingTests(unittest.TestCase):

    def test_iso8601(self):
        now = datetime.utcnow().replace(microsecond=0)
        self.assertEqual(now, datetime.strptime(now.isoformat('T'), "%Y-%m-%dT%H:%M:%S"))
        # tests bug 1662
        self.assertEqual(now, datetime.strptime(now.isoformat('T') + 'Z', "%Y-%m-%dT%H:%M:%SZ"))

def test_main():
    test_support.run_unittest(
        ParsingTests
    )


if __name__ == '__main__':
    test_main()