def test_no_numeric(self): assert not pytextparser.isnumeric("foo") assert not pytextparser.isnumeric("10 foo")
def test_float(self): assert pytextparser.isnumeric("23.480") assert pytextparser.isnumeric("9.6502")
def test_scientific_notation(self): assert pytextparser.isnumeric("1e-10") assert pytextparser.isnumeric("2e+54")
def test_integer(self): assert pytextparser.isnumeric("23") assert pytextparser.isnumeric("8431")