test_utils.py 193 B

1234567891011
  1. # -*- coding: utf-8 -*-
  2. import pytest
  3. from acme.utils import (add)
  4. class Test:
  5. def test_add(self):
  6. """Ensure that adding yields correct results."""
  7. assert add(1,2) == 3