Пример #1
0
 def test_trim_2 (self) : 
     result = trim(None)
     self.assert_(result == "")
Пример #2
0
 def test_trim_3 (self) : 
     mystring = "I hate M&M"
     result = trim(mystring)
     self.assert_(result == "I hate M&M")
Пример #3
0
 def test_trim_1 (self) : 
     mystring = ""
     result = trim(mystring)
     self.assert_(result == "")