test_operations.py 256 B

1234567891011
  1. """
  2. Test operations
  3. This module is just there to help with doc building etc. on
  4. project creation. You will probably delete it early in the project.
  5. """
  6. from faostat_data_primap.operations import add_two
  7. def test_add_two():
  8. assert add_two(3, 4) == 7