Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hypha
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ots
hypha
Commits
5af18926
Commit
5af18926
authored
6 years ago
by
Todd Dembrey
Browse files
Options
Downloads
Patches
Plain Diff
fixup! Refactor to use the base view test class
parent
9e10157b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
opentech/apply/funds/tests/test_views.py
+0
-3
0 additions, 3 deletions
opentech/apply/funds/tests/test_views.py
opentech/apply/review/tests/test_views.py
+2
-2
2 additions, 2 deletions
opentech/apply/review/tests/test_views.py
with
2 additions
and
5 deletions
opentech/apply/funds/tests/test_views.py
+
0
−
3
View file @
5af18926
from
django.test
import
TestCase
,
RequestFactory
from
django.urls
import
reverse
from
opentech.apply.funds.tests.factories
import
ApplicationSubmissionFactory
from
opentech.apply.users.tests.factories
import
UserFactory
,
StaffFactory
from
opentech.apply.utils.tests
import
BaseViewTestCase
...
...
This diff is collapsed.
Click to expand it.
opentech/apply/review/tests/test_views.py
+
2
−
2
View file @
5af18926
from
django.test
import
TestCase
,
RequestFactory
from
django.urls
import
reverse
from
opentech.apply.funds.tests.factories
import
ApplicationSubmissionFactory
...
...
@@ -96,9 +95,10 @@ class UserReviewFormTestCase(BaseViewTestCase):
self
.
assertEqual
(
response
.
status_code
,
403
)
class
ReviewDetailTestCase
(
BaseTestCase
):
class
ReviewDetailTestCase
(
Base
View
TestCase
):
user_factory
=
StaffFactory
url_name
=
'
funds:submissions:reviews:{}
'
base_view_name
=
'
review
'
def
get_kwargs
(
self
,
instance
):
return
{
'
pk
'
:
instance
.
id
,
'
submission_pk
'
:
instance
.
submission
.
id
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment