fixed insert_step_processor
This commit is contained in:
@@ -25,7 +25,8 @@ TEST_CASE_METHOD(SessionFixture, "Test insert object with belongs to relation wi
|
||||
const auto carrie = make_object<book_identity>("Carrie", s_king, 1974);
|
||||
|
||||
REQUIRE(carrie.is_transient());
|
||||
REQUIRE(ses.insert(carrie).is_ok());
|
||||
const auto res = ses.insert(carrie);
|
||||
REQUIRE(res.is_ok());
|
||||
REQUIRE(carrie.is_persistent());
|
||||
|
||||
auto found_author = ses.find<author_identity>(s_king->id);
|
||||
|
||||
Reference in New Issue
Block a user