2020class TestFetch :
2121 parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
2222
23- @pytest .mark .skip (reason = "Prism tests are disabled" )
23+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
2424 @parametrize
2525 def test_method_request_otp (self , client : CasParser ) -> None :
2626 fetch = client .cdsl .fetch .request_otp (
@@ -30,7 +30,7 @@ def test_method_request_otp(self, client: CasParser) -> None:
3030 )
3131 assert_matches_type (FetchRequestOtpResponse , fetch , path = ["response" ])
3232
33- @pytest .mark .skip (reason = "Prism tests are disabled" )
33+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
3434 @parametrize
3535 def test_raw_response_request_otp (self , client : CasParser ) -> None :
3636 response = client .cdsl .fetch .with_raw_response .request_otp (
@@ -44,7 +44,7 @@ def test_raw_response_request_otp(self, client: CasParser) -> None:
4444 fetch = response .parse ()
4545 assert_matches_type (FetchRequestOtpResponse , fetch , path = ["response" ])
4646
47- @pytest .mark .skip (reason = "Prism tests are disabled" )
47+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
4848 @parametrize
4949 def test_streaming_response_request_otp (self , client : CasParser ) -> None :
5050 with client .cdsl .fetch .with_streaming_response .request_otp (
@@ -60,7 +60,7 @@ def test_streaming_response_request_otp(self, client: CasParser) -> None:
6060
6161 assert cast (Any , response .is_closed ) is True
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_verify_otp (self , client : CasParser ) -> None :
6666 fetch = client .cdsl .fetch .verify_otp (
@@ -69,7 +69,7 @@ def test_method_verify_otp(self, client: CasParser) -> None:
6969 )
7070 assert_matches_type (FetchVerifyOtpResponse , fetch , 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_verify_otp_with_all_params (self , client : CasParser ) -> None :
7575 fetch = client .cdsl .fetch .verify_otp (
@@ -79,7 +79,7 @@ def test_method_verify_otp_with_all_params(self, client: CasParser) -> None:
7979 )
8080 assert_matches_type (FetchVerifyOtpResponse , fetch , path = ["response" ])
8181
82- @pytest .mark .skip (reason = "Prism tests are disabled" )
82+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
8383 @parametrize
8484 def test_raw_response_verify_otp (self , client : CasParser ) -> None :
8585 response = client .cdsl .fetch .with_raw_response .verify_otp (
@@ -92,7 +92,7 @@ def test_raw_response_verify_otp(self, client: CasParser) -> None:
9292 fetch = response .parse ()
9393 assert_matches_type (FetchVerifyOtpResponse , fetch , path = ["response" ])
9494
95- @pytest .mark .skip (reason = "Prism tests are disabled" )
95+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
9696 @parametrize
9797 def test_streaming_response_verify_otp (self , client : CasParser ) -> None :
9898 with client .cdsl .fetch .with_streaming_response .verify_otp (
@@ -107,7 +107,7 @@ def test_streaming_response_verify_otp(self, client: CasParser) -> None:
107107
108108 assert cast (Any , response .is_closed ) is True
109109
110- @pytest .mark .skip (reason = "Prism tests are disabled" )
110+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
111111 @parametrize
112112 def test_path_params_verify_otp (self , client : CasParser ) -> None :
113113 with pytest .raises (ValueError , match = r"Expected a non-empty value for `session_id` but received ''" ):
@@ -122,7 +122,7 @@ class TestAsyncFetch:
122122 "async_client" , [False , True , {"http_client" : "aiohttp" }], indirect = True , ids = ["loose" , "strict" , "aiohttp" ]
123123 )
124124
125- @pytest .mark .skip (reason = "Prism tests are disabled" )
125+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
126126 @parametrize
127127 async def test_method_request_otp (self , async_client : AsyncCasParser ) -> None :
128128 fetch = await async_client .cdsl .fetch .request_otp (
@@ -132,7 +132,7 @@ async def test_method_request_otp(self, async_client: AsyncCasParser) -> None:
132132 )
133133 assert_matches_type (FetchRequestOtpResponse , fetch , path = ["response" ])
134134
135- @pytest .mark .skip (reason = "Prism tests are disabled" )
135+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
136136 @parametrize
137137 async def test_raw_response_request_otp (self , async_client : AsyncCasParser ) -> None :
138138 response = await async_client .cdsl .fetch .with_raw_response .request_otp (
@@ -146,7 +146,7 @@ async def test_raw_response_request_otp(self, async_client: AsyncCasParser) -> N
146146 fetch = await response .parse ()
147147 assert_matches_type (FetchRequestOtpResponse , fetch , path = ["response" ])
148148
149- @pytest .mark .skip (reason = "Prism tests are disabled" )
149+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
150150 @parametrize
151151 async def test_streaming_response_request_otp (self , async_client : AsyncCasParser ) -> None :
152152 async with async_client .cdsl .fetch .with_streaming_response .request_otp (
@@ -162,7 +162,7 @@ async def test_streaming_response_request_otp(self, async_client: AsyncCasParser
162162
163163 assert cast (Any , response .is_closed ) is True
164164
165- @pytest .mark .skip (reason = "Prism tests are disabled" )
165+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
166166 @parametrize
167167 async def test_method_verify_otp (self , async_client : AsyncCasParser ) -> None :
168168 fetch = await async_client .cdsl .fetch .verify_otp (
@@ -171,7 +171,7 @@ async def test_method_verify_otp(self, async_client: AsyncCasParser) -> None:
171171 )
172172 assert_matches_type (FetchVerifyOtpResponse , fetch , path = ["response" ])
173173
174- @pytest .mark .skip (reason = "Prism tests are disabled" )
174+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
175175 @parametrize
176176 async def test_method_verify_otp_with_all_params (self , async_client : AsyncCasParser ) -> None :
177177 fetch = await async_client .cdsl .fetch .verify_otp (
@@ -181,7 +181,7 @@ async def test_method_verify_otp_with_all_params(self, async_client: AsyncCasPar
181181 )
182182 assert_matches_type (FetchVerifyOtpResponse , fetch , path = ["response" ])
183183
184- @pytest .mark .skip (reason = "Prism tests are disabled" )
184+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
185185 @parametrize
186186 async def test_raw_response_verify_otp (self , async_client : AsyncCasParser ) -> None :
187187 response = await async_client .cdsl .fetch .with_raw_response .verify_otp (
@@ -194,7 +194,7 @@ async def test_raw_response_verify_otp(self, async_client: AsyncCasParser) -> No
194194 fetch = await response .parse ()
195195 assert_matches_type (FetchVerifyOtpResponse , fetch , path = ["response" ])
196196
197- @pytest .mark .skip (reason = "Prism tests are disabled" )
197+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
198198 @parametrize
199199 async def test_streaming_response_verify_otp (self , async_client : AsyncCasParser ) -> None :
200200 async with async_client .cdsl .fetch .with_streaming_response .verify_otp (
@@ -209,7 +209,7 @@ async def test_streaming_response_verify_otp(self, async_client: AsyncCasParser)
209209
210210 assert cast (Any , response .is_closed ) is True
211211
212- @pytest .mark .skip (reason = "Prism tests are disabled" )
212+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
213213 @parametrize
214214 async def test_path_params_verify_otp (self , async_client : AsyncCasParser ) -> None :
215215 with pytest .raises (ValueError , match = r"Expected a non-empty value for `session_id` but received ''" ):
0 commit comments