forked from rtlee9/recipe-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.py
28 lines (24 loc) · 1.19 KB
/
tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from recipe_scrapers.tests.test_allrecipes import *
from recipe_scrapers.tests.test_bbcfood import *
from recipe_scrapers.tests.test_bbcgoodfood import *
from recipe_scrapers.tests.test_bonappetit import *
from recipe_scrapers.tests.test_closetcooking import *
from recipe_scrapers.tests.test_cookstr import *
from recipe_scrapers.tests.test_epicurious import *
from recipe_scrapers.tests.test_finedininglovers import *
from recipe_scrapers.tests.test_foodrepublic import *
from recipe_scrapers.tests.test_hundredandonecookbooks import *
from recipe_scrapers.tests.test_jamieoliver import *
from recipe_scrapers.tests.test_mybakingaddiction import *
from recipe_scrapers.tests.test_paninihappy import *
from recipe_scrapers.tests.test_realsimple import *
from recipe_scrapers.tests.test_simplyrecipes import *
from recipe_scrapers.tests.test_steamykitchen import *
from recipe_scrapers.tests.test_tastykitchen import *
from recipe_scrapers.tests.test_thepioneerwoman import *
from recipe_scrapers.tests.test_thevintagemixer import *
from recipe_scrapers.tests.test_twopeasandtheirpod import *
from recipe_scrapers.tests.test_whatsgabycooking import *
import unittest
if __name__ == '__main__':
unittest.main()