File: test_main.py

package info (click to toggle)
python-aioopenexchangerates 0.4.14-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 440 kB
  • sloc: python: 298; makefile: 13; javascript: 8
file content (8 lines) | stat: -rw-r--r-- 169 bytes parent folder | download
1
2
3
4
5
6
7
8
"""Provide some test data for the unit tests."""

from aioopenexchangerates.main import add


def test_add():
    """Test the add function."""
    assert add(1, 1) == 2