Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tested JRuby version #88

Merged
merged 4 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- "3.1"
- "3.2"
- "jruby-9.3.10.0"
- "jruby-9.4.1.0"
- "jruby-9.4.6.0"
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion candy_check.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "guard"
spec.add_development_dependency "guard-minitest"
spec.add_development_dependency "inch", "~> 0.7"
spec.add_development_dependency "minitest", "~> 5.10"
spec.add_development_dependency "minitest", "~> 5.22"
spec.add_development_dependency "minitest-around", "~> 0.4"
spec.add_development_dependency "minitest-focus"
spec.add_development_dependency "pry"
Expand Down
8 changes: 4 additions & 4 deletions spec/play_store/product_acknowledgements/response_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
end

describe "#acknowledged?" do
context "when result present" do
describe "when result present" do
let(:result) { "" }
let(:error_data) { nil }

Expand All @@ -17,7 +17,7 @@
end
end

context "when result is not present" do
describe "when result is not present" do
let(:result) { nil }
let(:error_data) { nil }

Expand All @@ -30,7 +30,7 @@
end

describe "#error" do
context "when error present" do
describe "when error present" do
let(:result) { nil }
let(:error_data) do
Module.new do
Expand All @@ -53,7 +53,7 @@ def body
end
end

context "when error is not present" do
describe "when error is not present" do
let(:result) { "" }
let(:error_data) { nil }

Expand Down
8 changes: 1 addition & 7 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,7 @@ def in_continuous_integration_environment?

ENV["DEBUG"] && Google::APIClient.logger.level = Logger::DEBUG

module MiniTest
class Spec
class << self
alias context describe
end
end

module Minitest
module Assertions
# The first parameter must be ```true```, not coercible to true.
def assert_true(obj, msg = nil)
Expand Down
Loading