diff --git a/lib/mutest/mutator/node/send.rb b/lib/mutest/mutator/node/send.rb index 3cdb37d5..299e66e6 100644 --- a/lib/mutest/mutator/node/send.rb +++ b/lib/mutest/mutator/node/send.rb @@ -13,11 +13,11 @@ class Send < self SELECTOR_REPLACEMENTS = IceNine.deep_freeze( __send__: %i[public_send], :[] => %i[at fetch key?], - :< => %i[== <= eql? equal?], + :< => %i[== eql? equal?], :<= => %i[< == eql? equal?], :== => %i[eql? equal?], :=== => %i[kind_of?], - :> => %i[== >= eql? equal?], + :> => %i[== eql? equal?], :>= => %i[> == eql? equal?], '=~': %i[match?], at: %i[fetch key?], diff --git a/lib/mutest/version.rb b/lib/mutest/version.rb index 849ce4be..1287685e 100644 --- a/lib/mutest/version.rb +++ b/lib/mutest/version.rb @@ -1,4 +1,4 @@ module Mutest # Current mutest version - VERSION = '0.0.3'.freeze + VERSION = '0.0.4'.freeze end # Mutest diff --git a/meta/send.rb b/meta/send.rb index 5f3ae664..2e9181f8 100644 --- a/meta/send.rb +++ b/meta/send.rb @@ -3,7 +3,6 @@ singleton_mutations mutation 'a == b' - mutation 'a >= b' mutation 'a.eql?(b)' mutation 'a.equal?(b)' mutation 'nil > b' @@ -119,7 +118,6 @@ singleton_mutations mutation 'a == b' - mutation 'a <= b' mutation 'a.eql?(b)' mutation 'a.equal?(b)' mutation 'nil < b'