From efcac4731f456ef28d5764484237473d64eda83a Mon Sep 17 00:00:00 2001 From: Eugene Leonovich Date: Mon, 5 Feb 2018 17:20:18 +0100 Subject: [PATCH] Update some integration tests Ref: https://github.com/tarantool/queue/commit/32ff60888b38d9e9866551162c7cf9fcc742de2c --- tests/Integration/QueueTest.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/Integration/QueueTest.php b/tests/Integration/QueueTest.php index cc8ed70..7b50975 100644 --- a/tests/Integration/QueueTest.php +++ b/tests/Integration/QueueTest.php @@ -257,6 +257,9 @@ public function testStats() 'touch' => 0, 'put' => 5, 'bury' => 2, + 'ttr' => 0, + 'delay' => 0, + 'ttl' => 0, ], ], $stats, '', 0.0, 3, true); } @@ -283,6 +286,9 @@ public function testEmptyStats() 'release' => 0, 'take' => 0, 'touch' => 0, + 'ttr' => 0, + 'delay' => 0, + 'ttl' => 0, ], ], $stats); } @@ -338,6 +344,9 @@ public function testStatsPath() 'touch' => 0, 'put' => 10, 'bury' => 3, + 'ttr' => 0, + 'delay' => 0, + 'ttl' => 0, ], $this->queue->stats('calls')); $this->assertSame(1, $this->queue->stats('calls.ack'));