1818class TestLocations :
1919 parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
2020
21- @pytest .mark .skip (reason = "Prism tests are disabled" )
21+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
2222 @parametrize
2323 def test_method_retrieve (self , client : Rollin ) -> None :
2424 location = client .locations .retrieve (
2525 "id" ,
2626 )
2727 assert_matches_type (LocationRetrieveResponse , location , path = ["response" ])
2828
29- @pytest .mark .skip (reason = "Prism tests are disabled" )
29+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
3030 @parametrize
3131 def test_raw_response_retrieve (self , client : Rollin ) -> None :
3232 response = client .locations .with_raw_response .retrieve (
@@ -38,7 +38,7 @@ def test_raw_response_retrieve(self, client: Rollin) -> None:
3838 location = response .parse ()
3939 assert_matches_type (LocationRetrieveResponse , location , path = ["response" ])
4040
41- @pytest .mark .skip (reason = "Prism tests are disabled" )
41+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
4242 @parametrize
4343 def test_streaming_response_retrieve (self , client : Rollin ) -> None :
4444 with client .locations .with_streaming_response .retrieve (
@@ -52,15 +52,15 @@ def test_streaming_response_retrieve(self, client: Rollin) -> None:
5252
5353 assert cast (Any , response .is_closed ) is True
5454
55- @pytest .mark .skip (reason = "Prism tests are disabled" )
55+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
5656 @parametrize
5757 def test_path_params_retrieve (self , client : Rollin ) -> None :
5858 with pytest .raises (ValueError , match = r"Expected a non-empty value for `id` but received ''" ):
5959 client .locations .with_raw_response .retrieve (
6060 "" ,
6161 )
6262
63- @pytest .mark .skip (reason = "Prism tests are disabled" )
63+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
6464 @parametrize
6565 def test_method_list (self , client : Rollin ) -> None :
6666 location = client .locations .list (
@@ -69,7 +69,7 @@ def test_method_list(self, client: Rollin) -> None:
6969 )
7070 assert_matches_type (SyncCursorPagination [LocationListResponse ], location , path = ["response" ])
7171
72- @pytest .mark .skip (reason = "Prism tests are disabled" )
72+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
7373 @parametrize
7474 def test_method_list_with_all_params (self , client : Rollin ) -> None :
7575 location = client .locations .list (
@@ -84,7 +84,7 @@ def test_method_list_with_all_params(self, client: Rollin) -> None:
8484 )
8585 assert_matches_type (SyncCursorPagination [LocationListResponse ], location , path = ["response" ])
8686
87- @pytest .mark .skip (reason = "Prism tests are disabled" )
87+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
8888 @parametrize
8989 def test_raw_response_list (self , client : Rollin ) -> None :
9090 response = client .locations .with_raw_response .list (
@@ -97,7 +97,7 @@ def test_raw_response_list(self, client: Rollin) -> None:
9797 location = response .parse ()
9898 assert_matches_type (SyncCursorPagination [LocationListResponse ], location , path = ["response" ])
9999
100- @pytest .mark .skip (reason = "Prism tests are disabled" )
100+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
101101 @parametrize
102102 def test_streaming_response_list (self , client : Rollin ) -> None :
103103 with client .locations .with_streaming_response .list (
@@ -118,15 +118,15 @@ class TestAsyncLocations:
118118 "async_client" , [False , True , {"http_client" : "aiohttp" }], indirect = True , ids = ["loose" , "strict" , "aiohttp" ]
119119 )
120120
121- @pytest .mark .skip (reason = "Prism tests are disabled" )
121+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
122122 @parametrize
123123 async def test_method_retrieve (self , async_client : AsyncRollin ) -> None :
124124 location = await async_client .locations .retrieve (
125125 "id" ,
126126 )
127127 assert_matches_type (LocationRetrieveResponse , location , path = ["response" ])
128128
129- @pytest .mark .skip (reason = "Prism tests are disabled" )
129+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
130130 @parametrize
131131 async def test_raw_response_retrieve (self , async_client : AsyncRollin ) -> None :
132132 response = await async_client .locations .with_raw_response .retrieve (
@@ -138,7 +138,7 @@ async def test_raw_response_retrieve(self, async_client: AsyncRollin) -> None:
138138 location = await response .parse ()
139139 assert_matches_type (LocationRetrieveResponse , location , path = ["response" ])
140140
141- @pytest .mark .skip (reason = "Prism tests are disabled" )
141+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
142142 @parametrize
143143 async def test_streaming_response_retrieve (self , async_client : AsyncRollin ) -> None :
144144 async with async_client .locations .with_streaming_response .retrieve (
@@ -152,15 +152,15 @@ async def test_streaming_response_retrieve(self, async_client: AsyncRollin) -> N
152152
153153 assert cast (Any , response .is_closed ) is True
154154
155- @pytest .mark .skip (reason = "Prism tests are disabled" )
155+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
156156 @parametrize
157157 async def test_path_params_retrieve (self , async_client : AsyncRollin ) -> None :
158158 with pytest .raises (ValueError , match = r"Expected a non-empty value for `id` but received ''" ):
159159 await async_client .locations .with_raw_response .retrieve (
160160 "" ,
161161 )
162162
163- @pytest .mark .skip (reason = "Prism tests are disabled" )
163+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
164164 @parametrize
165165 async def test_method_list (self , async_client : AsyncRollin ) -> None :
166166 location = await async_client .locations .list (
@@ -169,7 +169,7 @@ async def test_method_list(self, async_client: AsyncRollin) -> None:
169169 )
170170 assert_matches_type (AsyncCursorPagination [LocationListResponse ], location , path = ["response" ])
171171
172- @pytest .mark .skip (reason = "Prism tests are disabled" )
172+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
173173 @parametrize
174174 async def test_method_list_with_all_params (self , async_client : AsyncRollin ) -> None :
175175 location = await async_client .locations .list (
@@ -184,7 +184,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncRollin) -> N
184184 )
185185 assert_matches_type (AsyncCursorPagination [LocationListResponse ], location , path = ["response" ])
186186
187- @pytest .mark .skip (reason = "Prism tests are disabled" )
187+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
188188 @parametrize
189189 async def test_raw_response_list (self , async_client : AsyncRollin ) -> None :
190190 response = await async_client .locations .with_raw_response .list (
@@ -197,7 +197,7 @@ async def test_raw_response_list(self, async_client: AsyncRollin) -> None:
197197 location = await response .parse ()
198198 assert_matches_type (AsyncCursorPagination [LocationListResponse ], location , path = ["response" ])
199199
200- @pytest .mark .skip (reason = "Prism tests are disabled" )
200+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
201201 @parametrize
202202 async def test_streaming_response_list (self , async_client : AsyncRollin ) -> None :
203203 async with async_client .locations .with_streaming_response .list (
0 commit comments