pharo-spec / Spec

Spec is a framework in Pharo for describing user interfaces.
MIT License
62 stars 63 forks source link

methods with "sent but not implemented" selectors and no senders #1430

Open vonbecmann opened 1 year ago

vonbecmann commented 1 year ago

there are methods with "sent but not implemented" selectors and no senders

|selectors|
selectors := SystemNavigation new allSentNotImplementedSelectors.
selectors select: [ :each | each senders isEmpty 
                          and: [ each package name includesSubstring: 'Spec2' ]].
SpAbstractTextPresenter>>#whenAboutToStyleChangedDo:
SpMenuPresenter>>#neglect:
SpTokenTreeFilter>>#keepTreeNode:
SpUIThemeDecoratorTest>>#testDoesNotUnderstand
SpWorldPresenter>>#ensureExtentFor:
Ducasse commented 1 year ago

Thanks a lot for the initiative!