test: remove broken tests
Signed-off-by: Alexander Tkachev <sasha64sasha@gmail.com>
This commit is contained in:
parent
065ef91277
commit
a8872b9808
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue