Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Mailman Core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
303
Issues
303
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
43
Merge Requests
43
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNU Mailman
Mailman Core
Commits
f6e09955
Commit
f6e09955
authored
Sep 20, 2015
by
Barry Warsaw
Committed by
GitLab
Sep 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add another code-path test.
parent
3b90cb8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
src/mailman/rest/tests/test_owners.py
src/mailman/rest/tests/test_owners.py
+40
-0
No files found.
src/mailman/rest/tests/test_owners.py
0 → 100644
View file @
f6e09955
# Copyright (C) 2015 by the Free Software Foundation, Inc.
#
# This file is part of GNU Mailman.
#
# GNU Mailman is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option)
# any later version.
#
# GNU Mailman is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# GNU Mailman. If not, see <http://www.gnu.org/licenses/>.
"""Additional tests for the top-level owners resource."""
__all__
=
[
'TestOwners'
,
]
import
unittest
from
mailman.testing.helpers
import
call_api
from
mailman.testing.layers
import
RESTLayer
from
urllib.error
import
HTTPError
class
TestOwners
(
unittest
.
TestCase
):
layer
=
RESTLayer
def
test_bogus_trailing_path
(
self
):
# Nothing is allowed after the top-level /owners resource.
with
self
.
assertRaises
(
HTTPError
)
as
cm
:
call_api
(
'http://localhost:9001/3.0/owners/anne'
)
self
.
assertEqual
(
cm
.
exception
.
code
,
400
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment