Skip to content

Commit

Permalink
Bump version to 13.5.0 and remove print statements from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hhursev committed Oct 10, 2021
1 parent c228448 commit f632b5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion recipe_scrapers/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "13.4.0"
__version__ = "13.5.0"
7 changes: 1 addition & 6 deletions tests/test_gousto.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def test_host(self):
self.assertEqual("gousto.co.uk", self.harvester_class.host())

def test_canonical_url(self):
print(self.harvester_class.canonical_url())
self.assertEqual(
"https://test.example.com/", self.harvester_class.canonical_url()
)
Expand All @@ -25,7 +24,6 @@ def test_yields(self):
self.assertEqual("2 serving(s)", self.harvester_class.yields())

def test_ingredients(self):
print("ingredients list", self.harvester_class.ingredients())
self.assertCountEqual(
[
"1 onion",
Expand All @@ -36,10 +34,7 @@ def test_ingredients(self):
"2 British pork loin steaks",
"1 pot of double cream (227ml)",
"1/2 beef stock cube",
"200g linguine"
# "Olive oil",
# "pepper",
# "salt",
"200g linguine",
],
self.harvester_class.ingredients(),
)
Expand Down

0 comments on commit f632b5b

Please sign in to comment.