1
0
Fork 0

Removed create / drop system collection from Cluster test. This is forbidden now

This commit is contained in:
Michael Hackstein 2016-08-19 10:25:59 +02:00
parent 82bc34db4d
commit 1c1a61377b
1 changed files with 1 additions and 15 deletions

View File

@ -297,21 +297,7 @@ function ClusterCollectionSuite () {
}
assertNull(db._collection("_foo"));
},
////////////////////////////////////////////////////////////////////////////////
/// @brief test create system
////////////////////////////////////////////////////////////////////////////////
testCreateSystem : function () {
var c = db._create("_foo", { isSystem : true });
assertEqual("_foo", c.name());
assertEqual(2, c.type());
assertEqual(3, c.status());
assertTrue(c.hasOwnProperty("_id"));
c.drop();
},
}
};
}