mirror of
https://github.com/sprockets/sprockets.mixins.metrics.git
synced 2024-11-21 19:28:34 +00:00
replace list dereferencing with itertools.chain for py2
This commit is contained in:
parent
924735c24e
commit
03ba3b7125
1 changed files with 13 additions and 16 deletions
29
tests.py
29
tests.py
|
@ -1,4 +1,5 @@
|
|||
import base64
|
||||
import itertools
|
||||
import logging
|
||||
import os
|
||||
import socket
|
||||
|
@ -71,10 +72,9 @@ class TCPStatsdMetricCollectionTests(testing.AsyncHTTPTestCase):
|
|||
path = ('foo', 'bar')
|
||||
value = 500
|
||||
metric_type = 'c'
|
||||
expected = "{}:{}|{}\n".format(
|
||||
'.'.join((self.namespace, 'counters', *path)),
|
||||
value,
|
||||
metric_type)
|
||||
expected = "{}:{}|{}\n".format('.'.join(itertools.chain((self.namespace, 'counters'), path)),
|
||||
value,
|
||||
metric_type)
|
||||
|
||||
self.application.statsd.send(path, value, metric_type)
|
||||
mock_sock.assert_called_once_with(expected.encode())
|
||||
|
@ -84,10 +84,9 @@ class TCPStatsdMetricCollectionTests(testing.AsyncHTTPTestCase):
|
|||
path = ('foo', 'bar')
|
||||
value = 500
|
||||
metric_type = 'ms'
|
||||
expected = "{}:{}|{}\n".format(
|
||||
'.'.join((self.namespace, 'timers', *path)),
|
||||
value,
|
||||
metric_type)
|
||||
expected = "{}:{}|{}\n".format('.'.join(itertools.chain((self.namespace, 'timers'), path)),
|
||||
value,
|
||||
metric_type)
|
||||
|
||||
self.application.statsd.send(path, value, metric_type)
|
||||
mock_sock.assert_called_once_with(expected.encode())
|
||||
|
@ -213,10 +212,9 @@ class UDPStatsdMetricCollectionTests(testing.AsyncHTTPTestCase):
|
|||
path = ('foo', 'bar')
|
||||
value = 500
|
||||
metric_type = 'c'
|
||||
expected = "{}:{}|{}".format(
|
||||
'.'.join((self.namespace, 'counters', *path)),
|
||||
value,
|
||||
metric_type)
|
||||
expected = "{}:{}|{}".format('.'.join(itertools.chain((self.namespace, 'counters'), path)),
|
||||
value,
|
||||
metric_type)
|
||||
|
||||
self.application.statsd.send(path, value, metric_type)
|
||||
mock_sock.assert_called_once_with(
|
||||
|
@ -228,10 +226,9 @@ class UDPStatsdMetricCollectionTests(testing.AsyncHTTPTestCase):
|
|||
path = ('foo', 'bar')
|
||||
value = 500
|
||||
metric_type = 'ms'
|
||||
expected = "{}:{}|{}".format(
|
||||
'.'.join((self.namespace, 'timers', *path)),
|
||||
value,
|
||||
metric_type)
|
||||
expected = "{}:{}|{}".format('.'.join(itertools.chain((self.namespace, 'timers'), path)),
|
||||
value,
|
||||
metric_type)
|
||||
|
||||
self.application.statsd.send(path, value, metric_type)
|
||||
mock_sock.assert_called_once_with(
|
||||
|
|
Loading…
Reference in a new issue