コード例 #1
0
ファイル: test_strings.py プロジェクト: movermeyer/taipan
 def test_suffix__absent__strict(self):
     with self.assertRaises(ValueError) as r:
         __unit__.trim('foobar', suffix='thud', strict=True)
     self.assertIn("expected", str(r.exception))
     self.assertIn("suffix", str(r.exception))
コード例 #2
0
ファイル: test_strings.py プロジェクト: movermeyer/taipan
 def test_suffix__present(self):
     self.assertEquals('foo', __unit__.trim('foobar', suffix='bar'))
コード例 #3
0
ファイル: test_strings.py プロジェクト: movermeyer/taipan
 def test_suffix__absent__non_strict(self):
     self.assertEquals('foobar',
                       __unit__.trim('foobar', suffix='thud', strict=False))
コード例 #4
0
ファイル: test_strings.py プロジェクト: movermeyer/taipan
 def test_prefix__present(self):
     self.assertEquals('bar', __unit__.trim('foobar', prefix='foo'))
コード例 #5
0
ファイル: test_strings.py プロジェクト: movermeyer/taipan
 def test_suffix__empty(self):
     self.assertEquals(self.STRING, __unit__.trim(self.STRING, suffix=""))
コード例 #6
0
ファイル: test_strings.py プロジェクト: movermeyer/taipan
 def test_string__some_object(self):
     with self.assertRaises(TypeError):
         __unit__.trim(object())
コード例 #7
0
ファイル: test_strings.py プロジェクト: movermeyer/taipan
 def test_no_infixes(self):
     with self.assertRaises(ValueError) as r:
         __unit__.trim(self.STRING)
     self.assertIn("exactly one", str(r.exception))
コード例 #8
0
ファイル: test_strings.py プロジェクト: Xion/taipan
 def test_suffix__absent__strict(self):
     with self.assertRaises(ValueError) as r:
         __unit__.trim('foobar', suffix='thud', strict=True)
     self.assertIn("expected", str(r.exception))
     self.assertIn("suffix", str(r.exception))
コード例 #9
0
ファイル: test_strings.py プロジェクト: movermeyer/taipan
 def test_string__none(self):
     with self.assertRaises(TypeError):
         __unit__.trim(None)
コード例 #10
0
ファイル: test_strings.py プロジェクト: Xion/taipan
 def test_suffix__present(self):
     self.assertEquals('foo', __unit__.trim('foobar', suffix='bar'))
コード例 #11
0
ファイル: test_strings.py プロジェクト: Xion/taipan
 def test_suffix__absent__non_strict(self):
     self.assertEquals(
         'foobar', __unit__.trim('foobar', suffix='thud', strict=False))
コード例 #12
0
ファイル: test_strings.py プロジェクト: Xion/taipan
 def test_suffix__empty(self):
     self.assertEquals(self.STRING, __unit__.trim(self.STRING, suffix=""))
コード例 #13
0
ファイル: test_strings.py プロジェクト: Xion/taipan
 def test_prefix__present(self):
     self.assertEquals('bar', __unit__.trim('foobar', prefix='foo'))
コード例 #14
0
ファイル: test_strings.py プロジェクト: Xion/taipan
 def test_no_infixes(self):
     with self.assertRaises(ValueError) as r:
         __unit__.trim(self.STRING)
     self.assertIn("exactly one", str(r.exception))
コード例 #15
0
ファイル: test_strings.py プロジェクト: Xion/taipan
 def test_string__some_object(self):
     with self.assertRaises(TypeError):
         __unit__.trim(object())
コード例 #16
0
ファイル: test_strings.py プロジェクト: Xion/taipan
 def test_string__none(self):
     with self.assertRaises(TypeError):
         __unit__.trim(None)