mirror of https://gitee.com/bigwinds/arangodb
Removed create / drop system collection from Cluster test. This is forbidden now
This commit is contained in:
parent
82bc34db4d
commit
1c1a61377b
|
@ -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();
|
||||
},
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue