pub struct PestTester<R: RuleType, P: Parser<R>> { /* private fields */ }Implementations§
Source§impl<R: RuleType, P: Parser<R>> PestTester<R, P>
impl<R: RuleType, P: Parser<R>> PestTester<R, P>
Sourcepub fn new<D: Into<PathBuf>, S: AsRef<str>>(
test_dir: D,
test_ext: S,
rule: R,
skip_rules: HashSet<R>,
) -> Self
pub fn new<D: Into<PathBuf>, S: AsRef<str>>( test_dir: D, test_ext: S, rule: R, skip_rules: HashSet<R>, ) -> Self
Creates a new PestTester that looks for tests in test_dir and having file extension
test_ext. Code is parsed beinning at rule and the rules in skip_rule are ignored
when comparing to the expected expression.
Sourcepub fn from_defaults(rule: R, skip_rules: HashSet<R>) -> Self
pub fn from_defaults(rule: R, skip_rules: HashSet<R>) -> Self
Creates a new PestTester that looks for tests in <crate root>/tests/pest and having
file extension “.txt”. Code is parsed beinning at rule and the rules in skip_rule are
ignored when comparing to the expected expression.
Auto Trait Implementations§
impl<R, P> Freeze for PestTester<R, P>where
R: Freeze,
impl<R, P> RefUnwindSafe for PestTester<R, P>where
R: RefUnwindSafe,
P: RefUnwindSafe,
impl<R, P> Send for PestTester<R, P>
impl<R, P> Sync for PestTester<R, P>
impl<R, P> Unpin for PestTester<R, P>
impl<R, P> UnwindSafe for PestTester<R, P>where
R: UnwindSafe,
P: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more