예제 #1
0
파일: test.py 프로젝트: xxd3vin/performance
    def test3(self):
        result = xxutils.xxstrip("""abc
def
ghi""")
        #print result
        self.assertTrue(result == "abcdefghi")
예제 #2
0
파일: test.py 프로젝트: xxd3vin/performance
 def test2(self):
     result = xxutils.xxstrip(" a b c ")
     #print result
     self.assertTrue(result == "abc")