summaryrefslogtreecommitdiffstatshomepage
path: root/tests/test_api.py
blob: e45bb77f555e313ff5b6c67203f188a31600eb7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from ipm.api import build, extract, install


def test_build():
    build("C:\\Users\\fu050\\Desktop\\coc")


def test_extract():
    build("C:\\Users\\fu050\\Desktop\\coc")
    extract("C:\\Users\\fu050\\Desktop\\coc\\dist\\coc-0.1.0-alpha.1.ipk")


def test_install():
    build("C:\\Users\\fu050\\Desktop\\coc")
    install("C:\\Users\\fu050\\Desktop\\coc\\dist\\coc-0.1.0-alpha.1.ipk")