Module gherkin::tagexpr

source ·
Expand description

Tag expressions

You can read about tag expressions in the Cucumber documentation.

This implements the parsing apparatus for these expressions so that other crates like cucumber may take advantage of them.

Usage
use gherkin::tagexpr::TagOperation;
let op: TagOperation = "@a and @b".parse()?;

Enums