Skip to content

Commit

Permalink
remove changelog & edit readme
Browse files Browse the repository at this point in the history
  • Loading branch information
osoykan committed Oct 9, 2023
1 parent 48faa6b commit 3b22e48
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 86 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/changelog.yml

This file was deleted.

57 changes: 0 additions & 57 deletions CHANGELOG.md

This file was deleted.

12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,15 @@ TestSystem.validate {
}

kafka {
shouldBePublishedOnCondition<ExampleMessage> { actual ->
actual.aggregateId == 123
shouldBePublished<ExampleMessage> {
actual.aggregateId == 123
&& actual.metadata.topic = "example-topic"
&& actual.metadata.headers["example-header"] == "example-value"
}
shouldBeConsumedOnCondition<ExampleMessage> { actual ->
shouldBeConsumed<ExampleMessage> {
actual.aggregateId == 123
&& actual.metadata.topic = "example-topic"
&& actual.metadata.headers["example-header"] == "example-value"
}
}

Expand All @@ -138,7 +142,7 @@ TestSystem.validate {
}

kafka {
shouldBeConsumedOnCondition<ProductCreated> { actual ->
shouldBeConsumed<ProductCreated> {
actual.aggregateId == expectedId
}
}
Expand Down

0 comments on commit 3b22e48

Please sign in to comment.