Add tests for Sable's postgresql chathistory backend

This commit is contained in:
2024-10-27 18:17:57 +01:00
parent c31aaf4d61
commit b274cad65b
7 changed files with 277 additions and 23 deletions

View File

@ -9,6 +9,7 @@ class Specifications(enum.Enum):
RFC2812 = "RFC2812"
IRCv3 = "IRCv3" # Mark with capabilities whenever possible
Ergo = "Ergo"
Sable = "Sable"
Ircdocs = "ircdocs"
"""Any document on ircdocs.horse (especially defs.ircdocs.horse),
@ -24,6 +25,9 @@ class Specifications(enum.Enum):
return spec
raise ValueError(name)
def is_implementation_specific(self) -> bool:
return self in (Specifications.Ergo, Specifications.Sable)
@enum.unique
class Capabilities(enum.Enum):