From a1ce5a0dbd0bce96c8f437b84ebb0e4833f14636 Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Sun, 12 Feb 2012 13:49:08 +0100 Subject: [PATCH] First skeleton --- github/GithubObject.UnitTest.py | 5 +++++ github/GithubObject.py | 2 ++ run_tests.sh | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 github/GithubObject.UnitTest.py create mode 100644 github/GithubObject.py diff --git a/github/GithubObject.UnitTest.py b/github/GithubObject.UnitTest.py new file mode 100644 index 00000000..c0ea95bd --- /dev/null +++ b/github/GithubObject.UnitTest.py @@ -0,0 +1,5 @@ +import unittest + +from GithubObject import GithubObject + +unittest.main() diff --git a/github/GithubObject.py b/github/GithubObject.py new file mode 100644 index 00000000..b28b9a6b --- /dev/null +++ b/github/GithubObject.py @@ -0,0 +1,2 @@ +def GithubObject( *attributes ): + pass diff --git a/run_tests.sh b/run_tests.sh index a6a4f980..e94ac256 100644 --- a/run_tests.sh +++ b/run_tests.sh @@ -4,7 +4,7 @@ rm -f $(find -name "*.pyc") coverage erase -for f in *Test.py +for f in $(find -name "*Test.py") do coverage run --append $f --quiet echo