コード例 #1
0
ファイル: tests.py プロジェクト: cdown/imurl
def test_album_id_from_url_with_layout_and_anchor():
    out = imurl.album_id_from_url("http://imgur.com/a/Rbab9/layout/horizontal#0")
    eq_("Rbab9", out)
コード例 #2
0
ファイル: tests.py プロジェクト: cdown/imurl
def test_album_id_from_url_basic():
    out = imurl.album_id_from_url("http://imgur.com/a/Rbab9")
    eq_("Rbab9", out)
コード例 #3
0
ファイル: tests.py プロジェクト: cdown/imurl
def test_album_id_from_url_with_anchor():
    out = imurl.album_id_from_url("http://imgur.com/a/Rbab9#0")
    eq_("Rbab9", out)
コード例 #4
0
ファイル: tests.py プロジェクト: cdown/imurl
def test_album_id_from_url_without_url():
    out = imurl.album_id_from_url("Rbab9")
    eq_("Rbab9", out)