mirror of https://gitee.com/bigwinds/arangodb
added test for issue #2392
This commit is contained in:
parent
e37ac1c4f8
commit
5d82e260ff
|
@ -1,6 +1,8 @@
|
|||
devel
|
||||
-----
|
||||
|
||||
* increase default collection lock timeout from 30 to 900 seconds
|
||||
|
||||
* added function `db._engine()` for retrieval of storage engine information at
|
||||
server runtime
|
||||
|
||||
|
|
|
@ -54,6 +54,11 @@ function ahuacatlArithmeticTestSuite () {
|
|||
tearDown : function () {
|
||||
},
|
||||
|
||||
testConstAttributeAccess : function () {
|
||||
var actual = getQueryResults("LET it = { a: 4, b: 5, c: 6 } RETURN [ it.a * 3, it.b * 4, it.c * 5 ]");
|
||||
assertEqual([ [ 4 * 3, 5 * 4, 6 * 5 ] ], actual);
|
||||
},
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief test unary plus
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in New Issue