~jconti/recent-notifications/trunk

78 by Jason Conti
Adding a quick test framework to help avoid typo errors like the ones fixed by the previous commit. Need to write more tests. Currently testing Icon.py.
1
#!/bin/bash
2
3
for FILE in tests/test_*.py
4
do
5
  echo "Test: ${FILE}"
6
  python ${FILE}
7
done