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