[][src]Macro pest::fails_with

macro_rules! fails_with {
    ( parser: $parser:ident, input: $string:expr, rule: $rules:tt :: $rule:tt,
      positives: $positives:expr, negatives: $negatives:expr, pos: $pos:expr ) => { ... };
}

Testing tool that compares produced errors.

This macro takes several arguments:

  • parser - name of the data structure implementing Parser
  • input - input to be tested against
  • rule - Rule which will be run
  • positives - positive Rule attempts that failed
  • negative - negative Rule attempts that failed
  • pos - byte position of failure

Examples

fails_with! {
    parser: AbcParser,
    input: "abcdf",
    rule: Rule::a,
    positives: vec![Rule::c],
    negatives: vec![],
    pos: 4
};