Skip to content

Commit 162346b

Browse files
committed
Restore ruby_minor_version_build_tag test
I had deleted it in 7b67323 by mistake...
1 parent d64603d commit 162346b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

_gem/spec/go_gem/util_spec.rb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# frozen_string_literal: true
2+
3+
RSpec.describe GoGem::Util do
4+
describe ".ruby_minor_version_build_tag" do
5+
subject { GoGem::Util.ruby_minor_version_build_tag(ruby_version) }
6+
7+
let(:ruby_version) { "3.4.1" }
8+
9+
it { should eq "ruby_3_4" }
10+
end
11+
end

0 commit comments

Comments
 (0)