laywerrobot/lib/python3.6/site-packages/pandas/tests/io/test_s3.py

9 lines
217 B
Python
Raw Normal View History

2020-08-27 21:55:39 +02:00
from pandas.io.common import is_s3_url
class TestS3URL(object):
def test_is_s3_url(self):
assert is_s3_url("s3://pandas/somethingelse.com")
assert not is_s3_url("s4://pandas/somethingelse.com")