Skip to content

Commit

Permalink
Update some integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Leonovich committed Feb 5, 2018
1 parent 9cde2a7 commit efcac47
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/Integration/QueueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,9 @@ public function testStats()
'touch' => 0,
'put' => 5,
'bury' => 2,
'ttr' => 0,
'delay' => 0,
'ttl' => 0,
],
], $stats, '', 0.0, 3, true);
}
Expand All @@ -283,6 +286,9 @@ public function testEmptyStats()
'release' => 0,
'take' => 0,
'touch' => 0,
'ttr' => 0,
'delay' => 0,
'ttl' => 0,
],
], $stats);
}
Expand Down Expand Up @@ -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'));
Expand Down

0 comments on commit efcac47

Please sign in to comment.