FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-python/tests/test_matplotlib.py at ephemeral-p100 · Kaggle/docker-python · GitHub
Kaggle
/
docker-python
Public
Notifications
You must be signed in to change notification settings
Fork
1k
Star
2.7k
Code
Issues
25
Pull requests
8
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
docker-python
/
tests
/
test_matplotlib.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
12 lines (9 loc) · 295 Bytes
Breadcrumbs
docker-python
/
tests
/
test_matplotlib.py
Copy path
File metadata and controls
12 lines (9 loc) · 295 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
import
unittest
import
os
.
path
import
matplotlib
.
pyplot
as
plt
import
numpy
as
np
class
TestMatplotlib
(
unittest
.
TestCase
):
def
test_plot
(
self
):
plt
.
plot
(
np
.
linspace
(
0
,
1
,
50
),
np
.
random
.
rand
(
50
))
plt
.
savefig
(
"plot1.png"
)
self
.
assertTrue
(
os
.
path
.
isfile
(
"plot1.png"
))
Back
|
FazBrowse Home
|
New Git URL