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