Skip to content

Commit

Permalink
feat(pact_comsumer): Added support for using EachKey and EachValue ma…
Browse files Browse the repository at this point in the history
…tchers
  • Loading branch information
rholshausen committed Jul 17, 2023
1 parent 3d687a7 commit 71fba00
Show file tree
Hide file tree
Showing 3 changed files with 495 additions and 9 deletions.
15 changes: 13 additions & 2 deletions rust/pact_consumer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,19 @@ pub mod prelude {
pub use crate::builders::{HttpPartBuilder, PactBuilder, PactBuilderAsync};
#[cfg(feature = "plugins")] pub use crate::builders::plugin_builder::PluginInteractionBuilder;
pub use crate::mock_server::{StartMockServer, ValidatingMockServer};
pub use crate::patterns::{EachLike, Like, Term};
pub use crate::patterns::{JsonPattern, Pattern, StringPattern};
pub use crate::patterns::{
EachLike,
Like,
Term,
ObjectMatching,
EachKey,
EachValue,
JsonPattern,
Pattern,
StringPattern,
each_key,
each_value
};
#[cfg(feature = "datetime")] pub use crate::patterns::{DateTime};
pub use crate::util::strip_null_fields;
}
Expand Down
Loading

0 comments on commit 71fba00

Please sign in to comment.