~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_timestamp.py

  • Committer: Aaron Bentley
  • Date: 2007-03-07 20:14:06 UTC
  • mto: (2323.6.9 0.15-integration)
  • mto: This revision was merged to the branch mainline in revision 2330.
  • Revision ID: abentley@panoramicfeedback.com-20070307201406-5bxjy8wlmmcxy0eh
Fix failing tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
class TestPatchHeader(tests.TestCase):
23
23
 
24
 
    def test_encode_patch_date(self):
 
24
    def test_format_patch_date(self):
25
25
        self.assertEqual('1970-01-01 00:00:00 +0000',
26
 
            timestamp.patch_header_date(0))
 
26
            timestamp.format_patch_date(0))
27
27
        self.assertEqual('1970-01-01 05:00:00 +0500',
28
 
            timestamp.patch_header_date(0, 5 * 3600))
29
 
        self.assertEqual('1969-12-31 19:00:00 -0500',
30
 
            timestamp.patch_header_date(0, -5 * 3600))
31
 
        self.assertEqual('1969-12-31 19:00:00 -0500',
32
 
            timestamp.patch_header_date(0, -5 * 3600))
 
28
            timestamp.format_patch_date(0, 5 * 3600))
 
29
        self.assertEqual('1969-12-31 19:00:00 -0500',
 
30
            timestamp.format_patch_date(0, -5 * 3600))
 
31
        self.assertEqual('1969-12-31 19:00:00 -0500',
 
32
            timestamp.format_patch_date(0, -5 * 3600))
33
33
        self.assertEqual('2007-03-06 10:04:19 -0500',
34
 
            timestamp.patch_header_date(1173193459, -5 * 3600))
 
34
            timestamp.format_patch_date(1173193459, -5 * 3600))
35
35
 
36
36
    def test_parse_patch_date(self):
37
37
        self.assertEqual((0, 0),