示例#1
0
 def test_elided(self, text, length, expected):
     assert utils.elide(text, length) == expected
示例#2
0
 def test_elided(self, text, length, expected):
     assert utils.elide(text, length) == expected
示例#3
0
 def test_too_small(self):
     """Test eliding to 0 chars which should fail."""
     with pytest.raises(ValueError):
         utils.elide('foo', 0)
示例#4
0
 def test_too_small(self):
     """Test eliding to 0 chars which should fail."""
     with pytest.raises(ValueError):
         utils.elide('foo', 0)