[drf | recipe test] Build a Backend REST API - 39


Add tests for retrieving recipe detail


レシピの詳細を作りましょう

test_recipe_api


from ... import ...


Ingredientクラスのインポート
...
from core.models import Recipe, Tag, Ingredient
...

sample_tag(), sample_ingredient(), detail_url()


タグとコンポーネントをrecipeオブジェクトにマッピングするには、オブジェクトの関数を作成する必要があります.あいつをglobalscopeに定義します.どこでも思う存分歌えますか?
detail url()関数のVSRECIPES url変数
HTTP URLアドレスを含むマイルストーン違いはargsキーワードパラメータの追加が重要かどうかです!はい.

test_view_recipe_detail()


これは詳細ページに関するテストソースコードです.

テストに戻る


成功!