1717class TestUniversal :
1818 parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
1919
20- @pytest .mark .skip (reason = "Prism tests are disabled" )
20+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
2121 @parametrize
2222 def test_method_create (self , client : Isaacus ) -> None :
2323 universal = client .classifications .universal .create (
@@ -27,7 +27,7 @@ def test_method_create(self, client: Isaacus) -> None:
2727 )
2828 assert_matches_type (UniversalClassificationResponse , universal , path = ["response" ])
2929
30- @pytest .mark .skip (reason = "Prism tests are disabled" )
30+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
3131 @parametrize
3232 def test_method_create_with_all_params (self , client : Isaacus ) -> None :
3333 universal = client .classifications .universal .create (
@@ -44,7 +44,7 @@ def test_method_create_with_all_params(self, client: Isaacus) -> None:
4444 )
4545 assert_matches_type (UniversalClassificationResponse , universal , 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_raw_response_create (self , client : Isaacus ) -> None :
5050 response = client .classifications .universal .with_raw_response .create (
@@ -58,7 +58,7 @@ def test_raw_response_create(self, client: Isaacus) -> None:
5858 universal = response .parse ()
5959 assert_matches_type (UniversalClassificationResponse , universal , path = ["response" ])
6060
61- @pytest .mark .skip (reason = "Prism tests are disabled" )
61+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
6262 @parametrize
6363 def test_streaming_response_create (self , client : Isaacus ) -> None :
6464 with client .classifications .universal .with_streaming_response .create (
@@ -80,7 +80,7 @@ class TestAsyncUniversal:
8080 "async_client" , [False , True , {"http_client" : "aiohttp" }], indirect = True , ids = ["loose" , "strict" , "aiohttp" ]
8181 )
8282
83- @pytest .mark .skip (reason = "Prism tests are disabled" )
83+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
8484 @parametrize
8585 async def test_method_create (self , async_client : AsyncIsaacus ) -> None :
8686 universal = await async_client .classifications .universal .create (
@@ -90,7 +90,7 @@ async def test_method_create(self, async_client: AsyncIsaacus) -> None:
9090 )
9191 assert_matches_type (UniversalClassificationResponse , universal , path = ["response" ])
9292
93- @pytest .mark .skip (reason = "Prism tests are disabled" )
93+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
9494 @parametrize
9595 async def test_method_create_with_all_params (self , async_client : AsyncIsaacus ) -> None :
9696 universal = await async_client .classifications .universal .create (
@@ -107,7 +107,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -
107107 )
108108 assert_matches_type (UniversalClassificationResponse , universal , path = ["response" ])
109109
110- @pytest .mark .skip (reason = "Prism tests are disabled" )
110+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
111111 @parametrize
112112 async def test_raw_response_create (self , async_client : AsyncIsaacus ) -> None :
113113 response = await async_client .classifications .universal .with_raw_response .create (
@@ -121,7 +121,7 @@ async def test_raw_response_create(self, async_client: AsyncIsaacus) -> None:
121121 universal = await response .parse ()
122122 assert_matches_type (UniversalClassificationResponse , universal , path = ["response" ])
123123
124- @pytest .mark .skip (reason = "Prism tests are disabled" )
124+ @pytest .mark .skip (reason = "Mock server tests are disabled" )
125125 @parametrize
126126 async def test_streaming_response_create (self , async_client : AsyncIsaacus ) -> None :
127127 async with async_client .classifications .universal .with_streaming_response .create (
0 commit comments