Exemple #1
0
def test_changeCellCalue3():
	testing_df = df.copy()
	result_df =df.copy()
	load.newCellValue(testing_df, 16, 16, 'hello')
	assert (((testing_df.fillna(0) == result_df.fillna(0)).all()).all()) == True
Exemple #2
0
def test_changeCellValue2():
	testing_df = df.copy()
	result_df = df.copy()
	load.newCellValue(testing_df, 0, 0, 'hello')
	result_df.loc[0, 'col1'] = 'hello'
	assert  (((testing_df.fillna(0) == result_df.fillna(0)).all()).all()) == True