Mapytex/mapytex/calculus/test/test_arithmetic.py

33 lines
571 B
Python
Raw Normal View History

#!/usr/bin/env python
# encoding: utf-8
2017-04-17 13:48:52 +00:00
from mapytex.calculus import arithmetic
2016-02-13 03:49:37 +00:00
def test_gcd_commu():
2016-02-13 03:49:37 +00:00
assert arithmetic.gcd(3, 15) == arithmetic.gcd(15, 3)
def test_gcd1():
assert arithmetic.gcd(3, 15) == 3
2016-02-13 03:49:37 +00:00
def test_gcd2():
assert arithmetic.gcd(14, 21) == 7
2016-02-13 03:49:37 +00:00
def test_gcd_prem():
assert arithmetic.gcd(14, 19) == 1
2016-02-13 03:49:37 +00:00
def test_gcd_neg():
assert arithmetic.gcd(3, -15) == 3
assert arithmetic.gcd(-3, -15) == -3
# -----------------------------
# Reglages pour 'vim'
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
2016-02-13 03:29:26 +00:00
# cursor: 16 del