Introduce unittest
parent
45e1d47c1c
commit
faefc0e63d
|
@ -1,2 +1,3 @@
|
||||||
*~
|
*~
|
||||||
locale/*
|
locale/*
|
||||||
|
__pycache__/
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
language: python
|
||||||
|
python:
|
||||||
|
- "3.5"
|
||||||
|
before_install:
|
||||||
|
- sudo apt-get install -qq -y python3-gi gir1.2-gtk-3.0
|
||||||
|
# command to run tests
|
||||||
|
script: python -m unittest
|
|
@ -17,7 +17,7 @@ package() {
|
||||||
cp -a ui/* "${pkgdir}/usr/share/${_pkgname}"
|
cp -a ui/* "${pkgdir}/usr/share/${_pkgname}"
|
||||||
install -D -m644 ${_pkgname}.desktop ${pkgdir}/etc/skel/.config/autostart/${_pkgname}.desktop
|
install -D -m644 ${_pkgname}.desktop ${pkgdir}/etc/skel/.config/autostart/${_pkgname}.desktop
|
||||||
install -D -m644 ${_pkgname}.desktop ${pkgdir}/usr/share/applications/${_pkgname}.desktop
|
install -D -m644 ${_pkgname}.desktop ${pkgdir}/usr/share/applications/${_pkgname}.desktop
|
||||||
install -D -m755 "src/${_pkgname}.py" "${pkgdir}/usr/bin/${_pkgname}.py"
|
install -D -m755 "src/manjaro_hello.py" "${pkgdir}/usr/bin/manjaro_hello.py"
|
||||||
cd "po"
|
cd "po"
|
||||||
for lang in $(ls -1 | sed -e 's/\..*$//'); do
|
for lang in $(ls -1 | sed -e 's/\..*$//'); do
|
||||||
if [ $lang != "manjaro-hello" ]
|
if [ $lang != "manjaro-hello" ]
|
||||||
|
|
|
@ -12,4 +12,4 @@ for lang in $(ls -1 | sed -e 's/\..*$//'); do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
cd ..
|
cd ..
|
||||||
python src/manjaro-hello.py
|
python src/manjaro_hello.py
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"test": "json"
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
from src import manjaro_hello
|
||||||
|
|
||||||
|
class ManjaroHello(unittest.TestCase):
|
||||||
|
def setUp(self):
|
||||||
|
self.path = "test/"
|
||||||
|
|
||||||
|
def test_read_json(self):
|
||||||
|
json = manjaro_hello.read_json(self.path + "test.json")
|
||||||
|
self.assertEqual(json, {"test":"json"})
|
||||||
|
json = manjaro_hello.read_json(self.path + "test")
|
||||||
|
self.assertEqual(json, None)
|
||||||
|
|
||||||
|
def test_get_lsb_infos(self):
|
||||||
|
self.assertIsInstance(manjaro_hello.get_lsb_infos(), dict)
|
Loading…
Reference in New Issue