86d81fcef5baeced1d0dabdeecf0ed8021735518
[p2pool.git] / p2pool / test / util / test_math.py
1 import unittest
2
3 from p2pool.util import math
4
5 class Test(unittest.TestCase):
6     def test_add_tuples(self):
7         assert math.add_tuples((1, 2, 3), (4, 5, 6)) == (5, 7, 9)