Created
August 21, 2019 15:57
-
-
Save mberrien-fitzsimons/5aff57cf03fb1f13bf5cfbd43d1e1feb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pytest | |
from mypackage_two.pandas_math import create_empty_dataframe | |
class TestCreateEmptyDataframe(object): | |
def test_on_create_empty_dataframe(self): | |
actual = len(create_empty_dataframe(['foo', 'bar'], 20)) | |
expected = 20 | |
assert actual == expected |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment