-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: yemeksepeti comments were developed.
- Loading branch information
Showing
5 changed files
with
29 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
from .price import Price | ||
from .menu import MenuValue | ||
from .menu_stack import MenuStack | ||
from .request_value import RequestValue | ||
from .menu import MenuValue |
2 changes: 0 additions & 2 deletions
2
src/recommendation_engine/app/domain/restaurants/values/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
from .geo import GeoValue | ||
from .request import RequestValue | ||
from .restaurant import RestaurantValue | ||
from .restaurant_stack import RestaurantStack | ||
from .delivery_time import DeliveryTime | ||
from .price import Price | ||
from .rating_count import RatingCount |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from src.recommendation_engine.app.domain.comments.entity.yemek_sepeti import ( | ||
YemekSepetiComments, | ||
) | ||
|
||
|
||
def test_yemeksepeti_comments(): | ||
yemek_sepeti_comments = YemekSepetiComments(restaurant_id="nrp4") | ||
results = yemek_sepeti_comments.process() | ||
assert isinstance(results, list) | ||
assert len(results) > 0 |