You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.
Simply forcing the use of Integer is actually kind of misleading/dangerous. Our goal with mutest should be to help people write correct software that is free of bugs but, while this is stricter than to_i in many ways, it has the surprising behavior of interpreting leading base information (ex: Integer('077') is not 77 since the 0 is interpreted as meaning 'octal').
Simply forcing the use of
Integer
is actually kind of misleading/dangerous. Our goal withmutest
should be to help people write correct software that is free of bugs but, while this is stricter thanto_i
in many ways, it has the surprising behavior of interpreting leading base information (ex:Integer('077')
is not77
since the0
is interpreted as meaning 'octal').See: mbj/mutant#704
The text was updated successfully, but these errors were encountered: