Example #1
0
 def test_default(self):
     assert inputs.natural(3) == 3
Example #2
0
 def test_string(self):
     with pytest.raises(ValueError):
         inputs.natural('foo')
Example #3
0
 def test_negative(self):
     with pytest.raises(ValueError):
         inputs.natural(-1)