MythTV  master
testall.py
Go to the documentation of this file.
1 #-*- coding: utf-8 -*-
2 
3 # simulate kodi/xbmc via very simplified Kodistubs.
4 import os
5 import sys
6 sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)) + '/../Kodistubs')
7 sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)) + '/..')
8 
9 from lib.scrapertest import *
10 
11 def main():
12  test_scrapers();
13 
14 if __name__ == '__main__':
15  main()
common.testall.main
def main()
Definition: testall.py:11
scrapertest
scrapertest.test_scrapers
def test_scrapers()
Definition: scrapertest.py:19