forked from hhursev/recipe-scrapers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tests.py
24 lines (19 loc) · 876 Bytes
/
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
#!/usr/bin/env python
# encoding: utf-8
from recipe_scrapers.tests.test_allrecipes import *
from recipe_scrapers.tests.test_bonappetit 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_jamieoliver import *
from recipe_scrapers.tests.test_mybakingaddiction 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_thevintagemixer import *
from recipe_scrapers.tests.test_twopeasandtheirpod import *
from recipe_scrapers.tests.test_whatsgabycooking import *
import unittest
if __name__ == '__main__':
unittest.main()