Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ component extends="tests.resources.ModuleIntegrationSpec" {
expect( anotherPost.isLoaded() ).toBeFalse();
expect( anotherPost.getBody() ).toBe( "another body" );
expect( anotherPost.getUser_Id() ).toBe( 1 );
expect( variables.queries ).toHaveLength(
1,
"Filling and associating the new post must not persist it."
);
} );

it( "can call fetch methods on the relationship builder", () => {
Expand Down
Loading