1
0
Fork 0

added test for issue #2392

This commit is contained in:
jsteemann 2017-03-23 12:25:42 +01:00
parent e37ac1c4f8
commit 5d82e260ff
2 changed files with 7 additions and 0 deletions

View File

@ -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

View File

@ -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
////////////////////////////////////////////////////////////////////////////////