@@ -80,23 +80,23 @@ MicLastPeriodInCaptionCheckerTest >> setUp [
8080{ #category : ' tests - missing period' }
8181MicLastPeriodInCaptionCheckerTest >> testCodeCheckerChecksCorrectlyMissingExtraPeriod [
8282
83- checker identifyMissingLastPeriod .
83+ checker shouldEndWithPeriod .
8484 checker checkProject: fileSystem / ' codeCaptionEndingWithPeriod.md' .
8585 self assert: checker isOkay
8686]
8787
8888{ #category : ' tests - extra period' }
8989MicLastPeriodInCaptionCheckerTest >> testCodeCheckerChecksCorrectlyNoExtraPeriod [
9090
91- checker identifyExtraLastPeriod .
91+ checker shouldNotEndWithPeriod .
9292 checker checkProject: fileSystem / ' codeCaptionMissingPeriod.md' .
9393 self assert: checker isOkay
9494]
9595
9696{ #category : ' tests - extra period' }
9797MicLastPeriodInCaptionCheckerTest >> testCodeCheckerIdentifyCorrectlyExtraPeriod [
9898
99- checker identifyExtraLastPeriod .
99+ checker shouldNotEndWithPeriod .
100100 checker checkProject: fileSystem / ' codeCaptionEndingWithPeriod.md' .
101101 self deny: checker isOkay.
102102
@@ -109,7 +109,7 @@ MicLastPeriodInCaptionCheckerTest >> testCodeCheckerIdentifyCorrectlyExtraPeriod
109109{ #category : ' tests - missing period' }
110110MicLastPeriodInCaptionCheckerTest >> testCodeCheckerIdentifyCorrectlyMissingExtraPeriod [
111111
112- checker identifyMissingLastPeriod .
112+ checker shouldEndWithPeriod .
113113 checker checkProject: fileSystem / ' codeCaptionMissingPeriod.md' .
114114 self deny: checker isOkay.
115115
@@ -122,41 +122,41 @@ MicLastPeriodInCaptionCheckerTest >> testCodeCheckerIdentifyCorrectlyMissingExtr
122122{ #category : ' tests' }
123123MicLastPeriodInCaptionCheckerTest >> testConfigureFromFalse [
124124 checker configureFrom: ' false' .
125- self assert: checker codeShouldEndWithPeriod equals: false .
125+ self assert: checker isEndingWithPeriod equals: false .
126126]
127127
128128{ #category : ' tests' }
129129MicLastPeriodInCaptionCheckerTest >> testConfigureFromNil [
130130 checker configureFrom: nil .
131- self assert : checker codeShouldEndWithPeriod equals: true .
131+ self deny : checker isEndingWithPeriod .
132132]
133133
134134{ #category : ' tests' }
135135MicLastPeriodInCaptionCheckerTest >> testConfigureFromTrue [
136136 checker configureFrom: ' true' .
137- self assert: checker codeShouldEndWithPeriod equals: true .
137+ self assert: checker isEndingWithPeriod equals: true .
138138]
139139
140140{ #category : ' tests - missing period' }
141141MicLastPeriodInCaptionCheckerTest >> testFigureCheckerChecksCorrectlyMissingExtraPeriod [
142142
143- checker identifyMissingLastPeriod .
143+ checker shouldEndWithPeriod .
144144 checker checkProject: fileSystem / ' figureCaptionEndingWithPeriod.md' .
145145 self assert: checker isOkay
146146]
147147
148148{ #category : ' tests - extra period' }
149149MicLastPeriodInCaptionCheckerTest >> testFigureCheckerChecksCorrectlyNoExtraPeriod [
150150
151- checker identifyExtraLastPeriod .
151+ checker shouldNotEndWithPeriod .
152152 checker checkProject: fileSystem / ' figureCaptionMissingPeriod.md' .
153153 self assert: checker isOkay
154154]
155155
156156{ #category : ' tests - extra period' }
157157MicLastPeriodInCaptionCheckerTest >> testFigureCheckerIdentifyCorrectlyExtraPeriod [
158158
159- checker identifyExtraLastPeriod .
159+ checker shouldNotEndWithPeriod .
160160 checker checkProject: fileSystem / ' figureCaptionEndingWithPeriod.md' .
161161 self deny: checker isOkay.
162162
@@ -169,7 +169,7 @@ MicLastPeriodInCaptionCheckerTest >> testFigureCheckerIdentifyCorrectlyExtraPeri
169169{ #category : ' tests - missing period' }
170170MicLastPeriodInCaptionCheckerTest >> testFigureCheckerIdentifyCorrectlyMissingExtraPeriod [
171171
172- checker identifyMissingLastPeriod .
172+ checker shouldEndWithPeriod .
173173 checker checkProject: fileSystem / ' figureCaptionMissingPeriod.md' .
174174 self deny: checker isOkay.
175175
@@ -182,23 +182,23 @@ MicLastPeriodInCaptionCheckerTest >> testFigureCheckerIdentifyCorrectlyMissingEx
182182{ #category : ' tests - missing period' }
183183MicLastPeriodInCaptionCheckerTest >> testMathCheckerChecksCorrectlyMissingExtraPeriod [
184184
185- checker identifyMissingLastPeriod .
185+ checker shouldEndWithPeriod .
186186 checker checkProject: fileSystem / ' equationCaptionEndingWithPeriod.md' .
187187 self assert: checker isOkay
188188]
189189
190190{ #category : ' tests - extra period' }
191191MicLastPeriodInCaptionCheckerTest >> testMathCheckerChecksCorrectlyNoExtraPeriod [
192192
193- checker identifyExtraLastPeriod .
193+ checker shouldNotEndWithPeriod .
194194 checker checkProject: fileSystem / ' equationCaptionMissingPeriod.md' .
195195 self assert: checker isOkay
196196]
197197
198198{ #category : ' tests - extra period' }
199199MicLastPeriodInCaptionCheckerTest >> testMathCheckerIdentifyCorrectlyExtraPeriod [
200200
201- checker identifyExtraLastPeriod .
201+ checker shouldNotEndWithPeriod .
202202 checker checkProject: fileSystem / ' equationCaptionEndingWithPeriod.md' .
203203 self deny: checker isOkay.
204204
@@ -211,7 +211,7 @@ MicLastPeriodInCaptionCheckerTest >> testMathCheckerIdentifyCorrectlyExtraPeriod
211211{ #category : ' tests - missing period' }
212212MicLastPeriodInCaptionCheckerTest >> testMathCheckerIdentifyCorrectlyMissingExtraPeriod [
213213
214- checker identifyMissingLastPeriod .
214+ checker shouldEndWithPeriod .
215215 checker checkProject: fileSystem / ' equationCaptionMissingPeriod.md' .
216216 self deny: checker isOkay.
217217
0 commit comments