Slide 53
Slide 53 text
EAFP in the tests
expected = [expected_counter, expected_gauge, expected_gauge2]
expected_reordered = [
expected_counter, expected_gauge2, expected_gauge]
try:
fake_post.assert_called_with(
topic='...', host='...', app='...', metrics=expected)
except AssertionError:
fake_post.assert_called_with(
topic='...', host='...', app='...',
metrics=expected_reordered
)