Skip to content
This repository was archived by the owner on Aug 23, 2020. It is now read-only.
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
4 changes: 2 additions & 2 deletions lib/mutest/mutator/node/send.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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?],
Expand Down
2 changes: 1 addition & 1 deletion lib/mutest/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Mutest
# Current mutest version
VERSION = '0.0.3'.freeze
VERSION = '0.0.4'.freeze
end # Mutest
2 changes: 0 additions & 2 deletions meta/send.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

singleton_mutations
mutation 'a == b'
mutation 'a >= b'
mutation 'a.eql?(b)'
mutation 'a.equal?(b)'
mutation 'nil > b'
Expand Down Expand Up @@ -119,7 +118,6 @@

singleton_mutations
mutation 'a == b'
mutation 'a <= b'
mutation 'a.eql?(b)'
mutation 'a.equal?(b)'
mutation 'nil < b'
Expand Down