@@ -9,7 +9,7 @@ import sets
9
9
from streams import newFileStream, Stream , readLine
10
10
from sequtils import mapIt, apply
11
11
from sets import toSet, contains
12
- from strutils import split, strip, repeat, `%`, join, capitalize
12
+ from strutils import split, strip, repeat, `%`, join, capitalizeAscii
13
13
from nre import re, match, captures, `[]`, replace
14
14
import options
15
15
import " ./types"
@@ -115,7 +115,7 @@ proc newFeature(name: string): Feature =
115
115
scenarios: @ []
116
116
)
117
117
proc newScenario (feature: Feature , text: string ) : Scenario =
118
- let description = text.replace (headRE, " " ).capitalize
118
+ let description = text.replace (headRE, " " ).capitalizeAscii
119
119
result = Scenario (
120
120
description: description,
121
121
parent: feature,
@@ -174,7 +174,7 @@ proc newLine(line: string, ltype: LineType, number: int): Line =
174
174
content: sline.strip)
175
175
176
176
proc headKey (line: Line ) : string =
177
- return capitalize ((line.content.match headRE).get.captures[0 ])
177
+ return capitalizeAscii ((line.content.match headRE).get.captures[0 ])
178
178
179
179
proc nextLine (stream: var LineStream , skipBlankLines : bool = true ) : Line =
180
180
var text = " "
@@ -291,7 +291,7 @@ proc readBody(
291
291
feature.comments.add comments
292
292
293
293
const stepTypes = [" And" , " Given" , " When" , " Then" ]
294
- let stepTypeRE = re (" ($1)" % (stepTypes. mapIt (" (?:^$1)" % it)).join (" |" ))
294
+ let stepTypeRE = re (" ($1)" % mapIt (stepTypes, (" (?:^$1)" % it)).join (" |" ))
295
295
296
296
proc addStep (parent: Scenario , steps: var seq [Step ], line: Line ) : void =
297
297
var text = line.content.strip ()
0 commit comments