aboutsummaryrefslogtreecommitdiff
path: root/tests/test_gnu.py
blob: 090949c7eb6a2562bd72e8631b25f856c131b34f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from rlogtester import ReleaseLogTestCase

class GNUReleseLogTestCase(ReleaseLogTestCase):
    type = 'GNU'
    kwargs = { } 
    input = """
GNU mailutils NEWS -- history of user-visible changes. 2018-08-29
Copyright (C) 2002-2018 Free Software Foundation, Inc.
See the end of file for copying conditions.

Please send mailutils bug reports to <bug-mailutils@gnu.org>.

Version 3.5.90 (Git)

* Bugfixes

Version 3.5, 2018-08-29

* Support for Guile version 2.2.0 and later

Support for prior versions has been withdrawn.

* New scheme functions

** mu-encoder-port port name . args

Version 3.4 - 2017-11-02 

* Fix AM_MAILUTILS macro

The macro incorrectly compared three-part version number with a
two-part argument.

Version 3.3 - Sergey Poznyakoff, 2017-10-18

* TLS configuration

Some changes to the TLS configuration

Version 3.2 - 2017-03-11

* configuration syntax

Statements that allow for variable substitution also allow for command
expansion.  Commands are invoked the same way as in shell.    
"""
    
    def test_count(self):
        self.assertEqual(len(self.rlog), 4, "wrong count")

    def test_recent(self):
        elt = self.rlog[0]
        self.assertEqual(elt.version, "3.5")

    def test_index(self):
        elt = self.rlog[2]
        self.assertEqual(elt.version, "3.3")

if __name__ == '__main__':
    unittest.main()


Return to:

Send suggestions and report system problems to the System administrator.