Added the propertiesfile test to the test suite.
[recordtv.git] / src / test_recordtv
blob9f8000b4bf089df98d80157339499a404bb0f0a3
1 #!/usr/bin/python
3 import rtv_download
4 import rtv_schedule
5 import rtv_tvguide
6 import rtv_delete
7 import rtv_convert
8 import rtv_propertiesfile
10 from rtv_config import GTVGConfig
12 def main():
14 config = GTVGConfig( [], [] )
16 rtv_propertiesfile.test()
17 rtv_schedule.test( config )
19 print "All tests passed."
21 if __name__ == "__main__":
22 main()