Skip to content

Commit d07491b

Browse files
committed
Bump Ruby version to 3.4
Signed-off-by: Kentaro Hayashi <hayashi@clear-code.com>
1 parent f422253 commit d07491b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/suite.bats

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#!/usr/bin/env bats
22

33

4-
@test "ruby version is 3.2" {
4+
@test "ruby version is 3.4" {
55
run docker run --rm $IMAGE sh -c "ruby --version | cut -d ' ' -f 2"
66
[ "$status" -eq 0 ]
77

88
major=$(echo "$output" | cut -d '.' -f 1)
99
minor=$(echo "$output" | cut -d '.' -f 2)
1010
[ "$major" -eq "3" ]
11-
[[ "$minor" -eq "2" ]]
11+
[[ "$minor" -eq "4" ]]
1212
}
1313

1414

0 commit comments

Comments
 (0)