Skip to content

Commit

Permalink
Add failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
jedelbo committed Sep 3, 2024
1 parent 1760013 commit 4d37f1c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/object-store/object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,16 @@ TEST_CASE("object") {
});
}

SECTION("modifying origin table 'table2', property 'value' "
"while observing related table 'table', property 'origin' "
"-> does NOT send a notification") {
auto token = require_no_change(object_target, kpa_target_backlink);

write([&] {
object_origin.set_column_value("value", 105);
});
}

SECTION("modifying related table 'table', property 'value 1' "
"while observing related table 'table', property 'value 1' "
"-> DOES send a notification") {
Expand Down

0 comments on commit 4d37f1c

Please sign in to comment.