We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d4e7b8 commit f6551edCopy full SHA for f6551ed
tests/DocumentationExamplesTest.php
@@ -1190,20 +1190,6 @@ public function testRunCommand_example_1(): void
1190
$this->assertInstanceOf(Cursor::class, $cursor);
1191
}
1192
1193
- public function testRunCommand_example_2(): void
1194
- {
1195
- $db = new Database($this->manager, $this->getDatabaseName());
1196
- $db->dropCollection('restaurants');
1197
- $db->createCollection('restaurants');
1198
-
1199
- // Start runCommand Example 2
1200
- $cursor = $db->command(['collStats' => 'restaurants']);
1201
- $result = $cursor->toArray()[0];
1202
- // End runCommand Example 2
1203
1204
- $this->assertInstanceOf(Cursor::class, $cursor);
1205
- }
1206
1207
public function testIndex_example_1(): void
1208
{
1209
$db = new Database($this->manager, $this->getDatabaseName());
0 commit comments