FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-python/tests/test_datatable.py at pl_latest · 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_datatable.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
17 lines (16 loc) · 508 Bytes
Breadcrumbs
docker-python
/
tests
/
test_datatable.py
Copy path
File metadata and controls
17 lines (16 loc) · 508 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
13
14
15
16
17
import
unittest
import
datatable
as
dt
from
datatable
.
internal
import
frame_integrity_check
from
datatable
import
ltype
class
TestDatatable
(
unittest
.
TestCase
):
def
test_fread
(
self
):
d0
=
dt
.
fread
(
"L,T,U,D
\n
"
"true,True,TRUE,1
\n
"
"false,False,FALSE,0
\n
"
",,,
\n
"
)
frame_integrity_check
(
d0
)
assert
d0
.
shape
==
(
3
,
4
)
assert
d0
.
ltypes
==
(
ltype
.
bool
,)
*
4
assert
d0
.
to_list
()
==
[[
True
,
False
,
None
]]
*
4
Back
|
FazBrowse Home
|
New Git URL