How to test (in pytest) calculations when there is no reference to check against?
Say, I have a dataframe with a and b columns. And column c is calculated using a and b. The results are float numbers.
df = pd.DataFrame({'a': [4,3,5], 'b': [11,7,13]})
df['c'] = df['a']/df['b']