We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d1724 commit 581c29eCopy full SHA for 581c29e
tests/unit/collection/CollectionTest.php
@@ -44,23 +44,6 @@ public function testCache() {
44
$this->assertTrue($first_item[0]->name == "Cached");
45
}
46
47
- public function testBulkCreate() {
48
- // $items = App::collection('names')->create(array(
49
- // array(
50
- // 'name' => "Bulk 1",
51
- // 'number' => 1,
52
- // 'double' => 1.1
53
- // ),
54
55
- // 'name' => "Bulk 2",
56
- // 'number' => 2,
57
- // 'double' => 2.2
58
- // )
59
- // ));
60
- //
61
- // $this->assertTrue(count($items) == 2);
62
- }
63
-
64
public function testBulkCreate() {
65
$models = App::collection('my_items')->create(array(
66
array('name' => "One"),
0 commit comments