test_operations.py 252 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 unfccc_ghg_data.operations import add_two
  7. def test_add_two():
  8. assert add_two(3, 4) == 7