laywerrobot/lib/python3.6/site-packages/pandas/tests/io/test_s3.py
2020-08-27 21:55:39 +02:00

8 lines
217 B
Python

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")