File: test_popcon.py

package info (click to toggle)
python-popcon 3.0.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 112 kB
  • sloc: python: 225; makefile: 35
file content (25 lines) | stat: -rw-r--r-- 558 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import popcon


def test_version():
    assert hasattr(popcon, '__version__')


def test_packages():
    res = popcon.packages(['reportbug', 'python-debianbts'])
    assert len(res) == 2


def test_packages_raw():
    res = popcon.packages_raw(['reportbug', 'python-debianbts'])
    assert len(res) == 2


def test_source_packages():
    res = popcon.source_packages(['reportbug', 'python-debianbts'])
    assert len(res) == 2


def test_source_packages_raw():
    res = popcon.source_packages_raw(['reportbug', 'python-debianbts'])
    assert len(res) == 2