import textile
import pytest

@pytest.mark.skip("Requires network access")
def test_imagesize():
    imgurl = 'http://www.google.com/intl/en_ALL/images/srpr/logo1w.png'
    result = textile.tools.imagesize.getimagesize(imgurl)
    try:
        import PIL

        expect = (275, 95)
        assert result == expect
    except ImportError:
        expect = ''
        assert result == expect
