We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have this test that is bad because:
It should be updated by using a list of currently accepted redudant methods and provide a nice message telling the user what methods are problematic
testNoEquivalentSuperclassMethods | methods | "we do not care about methods that are installed from traits" methods := SystemNavigation new allMethods reject: [ :method | method isFromTrait ]. methods := methods select: [ :method | method overriddenMethod ifNotNil: [ :overridenMethod | method equivalentTo: overridenMethod ] ifNil: [ false ] ]. self assert: methods size <= 326
The text was updated successfully, but these errors were encountered:
yes, I wanted to actively kill the methods but dropped the ball (I did the same before e.g. for unused variables)
To see how the tests should look like, the unused vars one show how to add a list of known failures (e.g. from test data).
326 is a bit too much for such a whitelist, though.
A lot of the remaining are methods with pragmas that are copied down, these I think an not just be removed.
Sorry, something went wrong.
MarcusDenker
No branches or pull requests
We have this test that is bad because:
It should be updated by using a list of currently accepted redudant methods and provide a nice message telling the user what methods are problematic
The text was updated successfully, but these errors were encountered: