Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit 2d43c57

Browse files
akharcheshssf
authored andcommitted
Add tests create dataframe (#136)
1 parent 04b37bc commit 2d43c57

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

hpat/tests/test_dataframe.py

+18
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,15 @@ def test_impl(A, B, c):
5050
c = 2
5151
pd.testing.assert_series_equal(hpat_func(A, B, c), test_impl(A, B, c))
5252

53+
@unittest.skip('Implement feature to create DataFrame without column names')
54+
def test_create_without_column_names(self):
55+
def test_impl():
56+
df = pd.DataFrame([100, 200, 300, 400, 200, 100])
57+
return df
58+
59+
hpat_func = hpat.jit(test_impl)
60+
pd.testing.assert_frame_equal(hpat_func(), test_impl())
61+
5362
def test_unbox1(self):
5463
def test_impl(df):
5564
return df.A
@@ -73,6 +82,15 @@ def test_impl(df, cond):
7382
pd.testing.assert_series_equal(hpat_func(df.copy(), True), test_impl(df.copy(), True))
7483
pd.testing.assert_series_equal(hpat_func(df.copy(), False), test_impl(df.copy(), False))
7584

85+
@unittest.skip('Implement feature to create DataFrame without column names')
86+
def test_unbox_without_column_names(self):
87+
def test_impl(df):
88+
return df
89+
90+
df = pd.DataFrame([100, 200, 300, 400, 200, 100])
91+
hpat_func = hpat.jit(test_impl)
92+
pd.testing.assert_frame_equal(hpat_func(df), test_impl(df))
93+
7694
@unittest.skip('AssertionError - fix needed\n'
7795
'Attribute "dtype" are different\n'
7896
'[left]: int64\n'

0 commit comments

Comments
 (0)