chore: disable api field notess and history tests

tests being re-written

ref: #788 #759 #768
This commit is contained in:
2025-06-05 16:17:29 +09:30
parent 728db3f740
commit 82bfacbab3
12 changed files with 125 additions and 125 deletions

View File

@ -110,22 +110,22 @@ class API(
def test_api_field_exists_url_history(self):
""" Test for existance of API Field
# def test_api_field_exists_url_history(self):
# """ Test for existance of API Field
_urls.history field must exist
"""
# _urls.history field must exist
# """
assert 'history' in self.api_data['_urls']
# assert 'history' in self.api_data['_urls']
def test_api_field_type_url_history(self):
""" Test for type for API Field
# def test_api_field_type_url_history(self):
# """ Test for type for API Field
_urls.history field must be str
"""
# _urls.history field must be str
# """
assert type(self.api_data['_urls']['history']) is str
# assert type(self.api_data['_urls']['history']) is str
def test_api_field_exists_description(self):

View File

@ -108,22 +108,22 @@ class API(
def test_api_field_exists_url_history(self):
""" Test for existance of API Field
# def test_api_field_exists_url_history(self):
# """ Test for existance of API Field
_urls.history field must exist
"""
# _urls.history field must exist
# """
assert 'history' not in self.api_data['_urls']
# assert 'history' not in self.api_data['_urls']
def test_api_field_type_url_history(self):
""" Test for type for API Field
# def test_api_field_type_url_history(self):
# """ Test for type for API Field
_urls.history field must be str
"""
# _urls.history field must be str
# """
assert 'history' not in self.api_data['_urls']
# assert 'history' not in self.api_data['_urls']
def test_api_field_exists_description(self):