Exemplo n.º 1
0
 def testCompareStrListWithTupleOfPythonStrings(self):
     '''Compares StrList with a Python tuple of Python strings.'''
     sl = StrList()
     sl.append(Str('Foo'))
     sl.append(Str('Bar'))
     self.assertEqual(len(sl), 2)
     self.assertEqual(sl, ('Foo', 'Bar'))
Exemplo n.º 2
0
 def testCompareStrListWithTupleOfStrAndPythonString(self):
     '''Compares StrList with a Python tuple of mixed Str objects and Python strings.'''
     sl = StrList()
     sl.append(Str('Foo'))
     sl.append(Str('Bar'))
     self.assertEqual(len(sl), 2)
     self.assertEqual(sl, (Str('Foo'), 'Bar'))
Exemplo n.º 3
0
 def testCompareStrListWithTupleOfStrs(self):
     '''Compares StrList with a Python tuple of Str objects.'''
     sl = StrList()
     sl.append(Str('Foo'))
     sl.append(Str('Bar'))
     self.assertEqual(len(sl), 2)
     self.assertEqual(sl, (Str('Foo'), Str('Bar')))
Exemplo n.º 4
0
 def testCompareStrListWithTupleOfStrAndPythonString(self):
     """Compares StrList with a Python tuple of mixed Str objects and Python strings."""
     sl = StrList()
     sl.append(Str("Foo"))
     sl.append(Str("Bar"))
     self.assertEqual(len(sl), 2)
     self.assertEqual(sl, (Str("Foo"), "Bar"))
Exemplo n.º 5
0
 def testCompareStrListWithTupleOfPythonStrings(self):
     """Compares StrList with a Python tuple of Python strings."""
     sl = StrList()
     sl.append(Str("Foo"))
     sl.append(Str("Bar"))
     self.assertEqual(len(sl), 2)
     self.assertEqual(sl, ("Foo", "Bar"))
Exemplo n.º 6
0
 def testCompareStrListWithTupleOfStrs(self):
     """Compares StrList with a Python tuple of Str objects."""
     sl = StrList()
     sl.append(Str("Foo"))
     sl.append(Str("Bar"))
     self.assertEqual(len(sl), 2)
     self.assertEqual(sl, (Str("Foo"), Str("Bar")))
    def testConversionOperator(self):
        '''Time defined an conversion operator for Str, so passing a Time object to a method expecting a Str should work.'''
        t = Time(1, 2, 3)
        t_str = t.toString()
        sl = StrList()

        # StrList.append expects a Str object.
        sl.append(t)

        self.assertEqual(len(sl), 1)
        self.assertEqual(sl[0], t_str)
Exemplo n.º 8
0
    def testConversionOperator(self):
        '''Time defined an conversion operator for Str, so passing a Time object to a method expecting a Str should work.'''
        t = Time(1, 2, 3)
        t_str = t.toString()
        sl = StrList()

        # StrList.append expects a Str object.
        sl.append(t)

        self.assertEqual(len(sl), 1)
        self.assertEqual(sl[0], t_str)