-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
Test known paths #263
base: master
Are you sure you want to change the base?
Test known paths #263
Conversation
8ba7e9b
to
b962949
Compare
The class is more or less copied/simplified from django-extensions show_urls and is overkill for this sole test. It's handy functionality to have around though, should perhaps live in a util library somewhere. (Well, should be available in Django proper but I digress.) |
def test_no_necessary_paths_should_be_missing(self): | ||
installed_paths = set(UrlpatternFlattener().paths) | ||
missing = NECESSARY_PATHS - installed_paths |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where's the assertion this test makes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deffo needed and deffo missing.
Quality Gate passedIssues Measures |
Closes #261