2018-06-23 11:53:56 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skip
|
2018-04-03 15:43:02 +00:00
|
|
|
def test_pandas(selenium):
|
2018-05-04 17:09:32 +00:00
|
|
|
selenium.load_package("pandas")
|
2018-05-09 18:42:29 +00:00
|
|
|
assert len(selenium.run("import pandas\ndir(pandas)")) == 179
|
2018-04-24 23:29:54 +00:00
|
|
|
|
|
|
|
|
2018-06-23 11:53:56 +00:00
|
|
|
@pytest.mark.skip
|
2018-04-24 23:29:54 +00:00
|
|
|
def test_extra_import(selenium):
|
2018-05-23 11:23:49 +00:00
|
|
|
selenium.load_package("pandas")
|
2018-04-24 23:29:54 +00:00
|
|
|
selenium.run("from pandas import Series, DataFrame, Panel")
|