We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3af0f95 commit 36bb42aCopy full SHA for 36bb42a
spec/snaky_hash/string_keyed_spec.rb
@@ -8,6 +8,11 @@
8
it_behaves_like "a snaked hash"
9
10
it "can transform keys to string" do
11
+ skip_for(
12
+ engine: "ruby",
13
+ versions: %w(2.2.10 2.3.8 2.4.10),
14
+ reason: "transform_keys is not available in these versions of Ruby"
15
+ )
16
a = described_class.new(asd: "asd")
17
b = a.transform_keys(&:to_s)
18
expect(b.keys).to eq(["asd"])
0 commit comments