File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ gem 'rake'
66gem 'pry'
77gem 'test-unit'
88gem 'webmock' , require : false
9- gem 'activesupport'
9+ gem 'activesupport' , '~> 7.0.8'
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ PLATFORMS
8181 x86_64-linux
8282
8383DEPENDENCIES
84- activesupport
84+ activesupport ( ~> 7.0.8 )
8585 ontologies_api_client !
8686 pry
8787 rake
Original file line number Diff line number Diff line change 11require 'test-unit'
2+ require 'logger'
23require 'active_support'
4+ require 'active_support/logger'
35require 'active_support/cache'
46require_relative '../lib/ontologies_api_client'
57require_relative '../config/config'
68require 'webmock'
79
810WebMock . allow_net_connect!
911
10- # Set up a cache for testing
12+ Logger = :: Logger unless defined? ( Logger )
1113CACHE = ActiveSupport ::Cache ::MemoryStore . new
1214
1315module LinkedData
1416 module Client
1517 class TestCase < Test ::Unit ::TestCase
16- # You can use CACHE in your tests if needed
1718 end
1819 end
1920end
You can’t perform that action at this time.
0 commit comments