~jconti/recent-notifications/trunk

« back to all changes in this revision

Viewing changes to run-tests.sh

  • Committer: Jason Conti
  • Date: 2010-03-06 01:32:31 UTC
  • Revision ID: jason.conti@gmail.com-20100306013231-lmkfwkvrjj37xuoz
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.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
for FILE in tests/test_*.py
 
4
do
 
5
  echo "Test: ${FILE}"
 
6
  python ${FILE}
 
7
done