Пример #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)