Skip to content

Simplify tests verifying the modules - [opened] #7

Open
@sigmavirus24

Description

@sigmavirus24

In GitLab by @xZise on Jul 26, 2016, 04:54

Merges simplify-checks -> master

The test which verifies the modules dict first checked if the length was
correctly set and then checked the contents. But by checking the contents it
also checks the length so that check is obsolete. Additional does the check of
two lists show explicitly which elements are different between the lists:

>       assert stdin.modules['pep8'] == [pep8]
E       assert [<module 'pep...8.py'>, False] == [<module
'pep8...ges/pep8.py'>]
E         Left contains more items, first extra item: False
E         Use -v to get the full diff

But the original implementation at least shows the content of the list:

>       assert len(stdin.modules['pep8']) == 1
E       assert 2 == 1
E        +  where 2 = len([<module 'pep8...8.py'>, False])

Activity

sigmavirus24

sigmavirus24 commented on Oct 13, 2021

@sigmavirus24
MemberAuthor

In GitLab by @pycqa-jenkins on Jul 26, 2016, 04:55

👎 Jenkins Build Failed

Results available at: Jenkins [Flake8 Pollyfill's CI Pipeline #9]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

      Participants

      @sigmavirus24

      Issue actions

        Simplify tests verifying the modules - [opened] · Issue #7 · PyCQA/flake8-polyfill