File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,17 @@ Testie.test("Runtime") { |it, skip|
7
7
it.should ("have class level constants" ) {
8
8
Expect .value (Runtime .NAME ).toEqual ("wren-console" )
9
9
Expect .value (Runtime .WREN_VERSION ).toEqual ("0.4.0" )
10
- Expect .value (Runtime .VERSION ).toEqual ( "0.3.0" )
10
+ Expect .value (Runtime .VERSION ).toBeDefined ( )
11
11
}
12
12
it.should ("have details" ) {
13
13
var details = Runtime .details
14
14
Expect .value (details["name" ]).toEqual ("wren-console" )
15
15
Expect .value (details["wrenVersion" ]).toEqual ("0.4.0" )
16
- Expect .value (details["version" ]).toEqual ( "0.3.0" )
16
+ Expect .value (details["version" ]).toBeDefined ( )
17
17
}
18
18
it.should ("assertVersion" ) {
19
19
Runtime .assertVersion ("0.1.0" )
20
+ Runtime .assertVersion ("0.2.5" )
20
21
Runtime .assertVersion ("0.3.0" )
21
22
Expect .that { Runtime .assertVersion ("12.0.0" ) }
22
23
.toAbortWith ("wren-console version 12.0.0 or higher required." )
You can’t perform that action at this time.
0 commit comments