~izidor/gtg/documentation

« back to all changes in this revision

Viewing changes to tests/test_bidict.py

  • Committer: Izidor Matušov
  • Date: 2014-03-09 15:11:59 UTC
  • Revision ID: izidor.matusov@gmail.com-20140309151159-t5ldo0a990em5989
Clean docstrings

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# this program.  If not, see <http://www.gnu.org/licenses/>.
18
18
# -----------------------------------------------------------------------------
19
19
 
20
 
""" Tests for the BiDict class """
21
 
 
22
20
import unittest
23
21
import uuid
24
22
 
26
24
 
27
25
 
28
26
class TestBiDict(unittest.TestCase):
29
 
    """ Tests for the BiDict object."""
 
27
    """ BiDict """
30
28
 
31
29
    def test_add_and_gets(self):
32
30
        """ Test for the __init__, _get_by_first, _get_by_second function """