diff options
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Readers/Org/Directive.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Tests/Readers/Org/Directive.hs b/test/Tests/Readers/Org/Directive.hs index e92b1bbb9..ba012a69f 100644 --- a/test/Tests/Readers/Org/Directive.hs +++ b/test/Tests/Readers/Org/Directive.hs @@ -280,6 +280,14 @@ tests = headerWith ("wichtig", mempty, mempty) 1 "Wichtig" ] + , testGroup "Option |" + [ "disable export of tables" =: + T.unlines [ "#+OPTIONS: |:nil" + , "| chair |" + ] =?> + (mempty :: Blocks) + ] + , testGroup "unknown options" [ "unknown options are ignored" =: T.unlines [ "#+OPTIONS: does-not-exist:t "] =?> |