@@ -510,6 +510,8 @@ def testToolBuildSettings_FormatTextContent(qtbot, nwGUI):
510510 build .setValue ("text.includeBodyText" , False )
511511 build .setValue ("text.includeSynopsis" , False )
512512 build .setValue ("text.includeComments" , False )
513+ build .setValue ("text.includeStory" , False )
514+ build .setValue ("text.includeNotes" , False )
513515 build .setValue ("text.includeKeywords" , False )
514516 build .setValue ("text.ignoredKeywords" , "" )
515517
@@ -530,6 +532,8 @@ def testToolBuildSettings_FormatTextContent(qtbot, nwGUI):
530532 assert fmtTab .incBodyText .isChecked () is False
531533 assert fmtTab .incSynopsis .isChecked () is False
532534 assert fmtTab .incComments .isChecked () is False
535+ assert fmtTab .incStory .isChecked () is False
536+ assert fmtTab .incNotes .isChecked () is False
533537 assert fmtTab .incKeywords .isChecked () is False
534538 assert fmtTab .ignoredKeywords .text () == ""
535539
@@ -539,6 +543,8 @@ def testToolBuildSettings_FormatTextContent(qtbot, nwGUI):
539543 fmtTab .incBodyText .setChecked (True )
540544 fmtTab .incSynopsis .setChecked (True )
541545 fmtTab .incComments .setChecked (True )
546+ fmtTab .incStory .setChecked (True )
547+ fmtTab .incNotes .setChecked (True )
542548 fmtTab .incKeywords .setChecked (True )
543549
544550 fmtTab .addNoteHead .setChecked (True )
@@ -554,6 +560,8 @@ def testToolBuildSettings_FormatTextContent(qtbot, nwGUI):
554560 assert build .getBool ("text.includeBodyText" ) is True
555561 assert build .getBool ("text.includeSynopsis" ) is True
556562 assert build .getBool ("text.includeComments" ) is True
563+ assert build .getBool ("text.includeStory" ) is True
564+ assert build .getBool ("text.includeNotes" ) is True
557565 assert build .getBool ("text.includeKeywords" ) is True
558566 assert build .getStr ("text.ignoredKeywords" ) in ("@custom, @object" , "@object, @custom" )
559567
0 commit comments