@@ -174,7 +174,7 @@ var _ = Describe("Parsing", func() {
174
174
It ("should support double-quoted strings" , argParseTestCase {arg : Argument {Type : StringType }, raw : `"some; string, \nhere"` , output : "some; string, \n here" }.Run )
175
175
It ("should support raw strings" , argParseTestCase {arg : Argument {Type : StringType }, raw : "`some; string, \\ nhere`" , output : `some; string, \nhere` }.Run )
176
176
It ("should support integers" , argParseTestCase {arg : Argument {Type : IntType }, raw : "42" , output : 42 }.Run )
177
- XIt ("should support negative integers" , argParseTestCase {arg : Argument {Type : IntType }, raw : "-42" , output : - 42 }.Run )
177
+ It ("should support negative integers" , argParseTestCase {arg : Argument {Type : IntType }, raw : "-42" , output : - 42 }.Run )
178
178
It ("should support false booleans" , argParseTestCase {arg : Argument {Type : BoolType }, raw : "false" , output : false }.Run )
179
179
It ("should support true booleans" , argParseTestCase {arg : Argument {Type : BoolType }, raw : "true" , output : true }.Run )
180
180
@@ -194,7 +194,7 @@ var _ = Describe("Parsing", func() {
194
194
It ("should support double-quoted strings" , argParseTestCase {arg : anyArg , raw : `"some; string, \nhere"` , output : "some; string, \n here" }.Run )
195
195
It ("should support raw strings" , argParseTestCase {arg : anyArg , raw : "`some; string, \\ nhere`" , output : `some; string, \nhere` }.Run )
196
196
It ("should support integers" , argParseTestCase {arg : anyArg , raw : "42" , output : 42 }.Run )
197
- XIt ("should support negative integers" , argParseTestCase {arg : anyArg , raw : "-42" , output : - 42 }.Run )
197
+ It ("should support negative integers" , argParseTestCase {arg : anyArg , raw : "-42" , output : - 42 }.Run )
198
198
It ("should support false booleans" , argParseTestCase {arg : anyArg , raw : "false" , output : false }.Run )
199
199
It ("should support true booleans" , argParseTestCase {arg : anyArg , raw : "true" , output : true }.Run )
200
200
0 commit comments