@@ -200,6 +200,11 @@ def setUp(self):
200200 f'orderBy="teamId"&equalTo="{ self .team_id_b } "&limitToFirst=20' ,
201201 ],
202202 [f"/v2/projects/{ self .private_project_id_b } /status" , "" ],
203+ # query for tutorial
204+ [
205+ f"/v2/projects" ,
206+ f'orderBy="status"&equalTo="build_area_tutorial"&limitToFirst=1' ,
207+ ],
203208 # teams
204209 [f"/v2/teams/{ self .team_id } " , "" ],
205210 [f"/v2/teams/{ self .team_id } /teamName" , "" ],
@@ -252,6 +257,7 @@ def test_access_as_normal_user(self):
252257 (False , False ), # private project status attribute
253258 (False , False ), # private project b query
254259 (False , False ), # private project b status attribute
260+ (True , False ), # build area tutorial query
255261 (False , False ), # team
256262 (False , False ), # teamName
257263 (False , False ), # teamToken
@@ -294,6 +300,7 @@ def test_access_as_team_member(self):
294300 (True , False ), # private project status
295301 (False , False ), # private project b query
296302 (False , False ), # private project b status
303+ (True , False ), # build area tutorial query
297304 (False , False ), # team
298305 (True , False ), # teamName
299306 (False , False ), # teamToken
@@ -337,6 +344,7 @@ def test_access_as_project_manager(self):
337344 (True , True ), # private project status
338345 (True , False ), # private project b query
339346 (True , True ), # private project b status
347+ (True , False ), # build area tutorial query
340348 (True , True ), # team
341349 (True , True ), # teamName
342350 (True , True ), # teamToken
0 commit comments