test: remove broken tests

Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>
This commit is contained in:
Alexander Tkachev 2022-07-25 01:06:06 +03:00
parent 065ef91277
commit a8872b9808
1 changed files with 0 additions and 16 deletions

View File

@ -3,22 +3,6 @@ import pytest
from cloudevents.abstract import CloudEvent
def test_del_is_abstract():
"""
exists mainly for coverage reasons
"""
with pytest.raises(NotImplementedError):
del CloudEvent()["a"]
def test_set_is_abstract():
"""
exists mainly for coverage reasons
"""
with pytest.raises(NotImplementedError):
CloudEvent()["a"] = 2
def test_create_is_abstract():
"""
exists mainly for coverage reasons