mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 15:29:50 +00:00
Add tests for Sable's postgresql chathistory backend
This commit is contained in:
@ -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):
|
||||
|
Reference in New Issue
Block a user