File size: 261 Bytes
afcfd4d
ac9f14b
 
afcfd4d
 
ac9f14b
 
1
2
3
4
5
6
7
8
def test_incident_creation():
    inc = Incident(incident_id="T123", description="test")
    assert inc.incident_id == "T123"

def test_incident_id_presence():
    inc = Incident(incident_id="T456", description="another")
    assert hasattr(inc, "incident_id")