Added new quote setting to Preferences and updated tests

This commit is contained in:
Veronica K. B. Olsen
2021-01-19 18:37:19 +01:00
parent 4934ec2ea1
commit 6868b683d8
5 changed files with 122 additions and 129 deletions
@@ -53,6 +53,8 @@ showlineendings = False
bigdoclimit = 800
showfullpath = True
highlightquotes = True
allowopensquote = False
allowopendquote = True
highlightemph = True
[Backup]
@@ -53,6 +53,8 @@ showlineendings = True
bigdoclimit = 500
showfullpath = False
highlightquotes = False
allowopensquote = False
allowopendquote = True
highlightemph = False
[Backup]
+1 -1
View File
@@ -74,7 +74,7 @@ def testBaseConfig_Constructor(monkeypatch):
monkeypatch.undo()
# Other
monkeypatch.setattr("sys.platform", "some_ther_os")
monkeypatch.setattr("sys.platform", "some_other_os")
tstConf = Config()
assert tstConf.osLinux is False
assert tstConf.osDarwin is False