File tree Expand file tree Collapse file tree 2 files changed +0
-21
lines changed Expand file tree Collapse file tree 2 files changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,8 @@ Gem::Specification.new do |s|
48
48
s . add_development_dependency 'bundler'
49
49
s . add_development_dependency 'elasticsearch'
50
50
s . add_development_dependency 'elasticsearch-test-runner' unless defined? ( JRUBY_VERSION ) && JRUBY_VERSION <= '9.4'
51
- s . add_development_dependency 'minitest'
52
- s . add_development_dependency 'minitest-reporters' , '>= 1.6'
53
- s . add_development_dependency 'mocha'
54
51
s . add_development_dependency 'pry'
55
52
s . add_development_dependency 'rake'
56
- s . add_development_dependency 'shoulda-context'
57
53
s . add_development_dependency 'yard'
58
54
59
55
# Gems for testing integrations
@@ -68,7 +64,6 @@ Gem::Specification.new do |s|
68
64
s . add_development_dependency 'require-prof' unless defined? ( JRUBY_VERSION ) || defined? ( Rubinius )
69
65
s . add_development_dependency 'ruby-prof' unless defined? ( JRUBY_VERSION ) || defined? ( Rubinius )
70
66
s . add_development_dependency 'simplecov'
71
- s . add_development_dependency 'test-unit' , '~> 2'
72
67
s . description = <<-DESC . gsub ( /^ / , '' )
73
68
Ruby API for Elasticsearch. See the `elasticsearch` gem for full integration.
74
69
DESC
Original file line number Diff line number Diff line change 26
26
require 'elasticsearch'
27
27
require 'elasticsearch/api'
28
28
29
- Minitest ::Reporters . use! Minitest ::Reporters ::SpecReporter . new ( print_failure_summary : true )
30
-
31
- module Minitest
32
- class Test
33
- def assert_nothing_raised ( *args )
34
- begin
35
- line = __LINE__
36
- yield
37
- rescue Exception => e
38
- raise MiniTest ::Assertion , "Exception raised:\n <#{ e . class } >" , e . backtrace
39
- end
40
- true
41
- end
42
- end
43
- end
44
-
45
29
module Elasticsearch
46
30
module Test
47
31
class FakeClient
You can’t perform that action at this time.
0 commit comments