Introduce unittest

This commit is contained in:
Hugo Posnic
2016-12-18 01:15:20 +01:00
parent 45e1d47c1c
commit faefc0e63d
9 changed files with 29 additions and 2 deletions
+1
View File
@@ -1,2 +1,3 @@
*~
locale/*
__pycache__/
+7
View File
@@ -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
+1 -1
View File
@@ -17,7 +17,7 @@ package() {
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}/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"
for lang in $(ls -1 | sed -e 's/\..*$//'); do
if [ $lang != "manjaro-hello" ]
+1 -1
View File
@@ -12,4 +12,4 @@ for lang in $(ls -1 | sed -e 's/\..*$//'); do
fi
done
cd ..
python src/manjaro-hello.py
python src/manjaro_hello.py
View File
View File
+3
View File
@@ -0,0 +1,3 @@
{
"test": "json"
}
+16
View File
@@ -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)