diff options
author | Joey Hess <joey@kitenet.net> | 2014-08-01 12:49:26 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-08-01 12:49:26 -0400 |
commit | 683cfeacaaaea86a8b34f06c30e9ab21c50f86eb (patch) | |
tree | 54f55cb312f4c8cb6138aa33b250d83fa64c35da /Types | |
parent | 50d28db6f4e13c49a2e9ebae150a6415de1a30be (diff) |
add new section for testing commands
Diffstat (limited to 'Types')
-rw-r--r-- | Types/Command.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Types/Command.hs b/Types/Command.hs index 0df7c82e6..1f8456194 100644 --- a/Types/Command.hs +++ b/Types/Command.hs @@ -69,6 +69,7 @@ data CommandSection | SectionMetaData | SectionUtility | SectionPlumbing + | SectionTesting deriving (Eq, Ord, Enum, Bounded) descSection :: CommandSection -> String @@ -79,3 +80,4 @@ descSection SectionQuery = "Query commands" descSection SectionMetaData = "Metadata commands" descSection SectionUtility = "Utility commands" descSection SectionPlumbing = "Plumbing commands" +descSection SectionTesting = "Testing commands" |