Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scheduling-system
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
SMASCH
scheduling-system
Commits
64a0fac6
There was a problem fetching the pipeline metadata.
Commit
64a0fac6
authored
7 years ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
unt tests for kit request
parent
75315d77
No related branches found
No related tags found
1 merge request
!47
Resolve "Email to technician"
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
smash/web/tests/test_view_kit_request.py
+21
-0
21 additions, 0 deletions
smash/web/tests/test_view_kit_request.py
with
21 additions
and
0 deletions
smash/web/tests/test_view_kit_request.py
+
21
−
0
View file @
64a0fac6
import
datetime
from
django.core
import
mail
from
django.urls
import
reverse
from
functions
import
create_appointment_type
,
create_appointment
...
...
@@ -64,3 +65,23 @@ class ViewFunctionsTests(LoggedInTestCase):
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertTrue
(
item_name
in
response
.
content
)
def
test_kit_requests_send_email
(
self
):
item_name
=
"
Test item to be ordered
"
item
=
Item
.
objects
.
create
(
disposable
=
True
,
name
=
item_name
)
appointment_type
=
create_appointment_type
()
appointment_type
.
required_equipment
.
add
(
item
)
appointment_type
.
save
()
appointment
=
create_appointment
()
appointment
.
datetime_when
=
get_today_midnight_date
()
+
datetime
.
timedelta
(
days
=
2
)
appointment
.
appointment_types
.
add
(
appointment_type
)
appointment
.
save
()
response
=
self
.
client
.
get
(
reverse
(
'
web.views.kit_requests_send_mail
'
,
kwargs
=
{
'
start_date
'
:
str
(
get_today_midnight_date
().
strftime
(
"
%Y-%m-%d
"
))}))
self
.
assertEqual
(
response
.
status_code
,
200
)
self
.
assertTrue
(
item_name
in
response
.
content
)
self
.
assertEqual
(
1
,
len
(
mail
.
outbox
))
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