mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 02:32:44 +01:00
[googleplus] move tests
This commit is contained in:
parent
9d069c4778
commit
0c56a3f773
@ -146,16 +146,6 @@
|
|||||||
"title": "Breaking Down Baldur's Gate"
|
"title": "Breaking Down Baldur's Gate"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "GooglePlus",
|
|
||||||
"url": "https://plus.google.com/u/0/108897254135232129896/posts/ZButuJc6CtH",
|
|
||||||
"file": "ZButuJc6CtH.flv",
|
|
||||||
"info_dict": {
|
|
||||||
"upload_date": "20120613",
|
|
||||||
"uploader": "井上ヨシマサ",
|
|
||||||
"title": "嘆きの天使 降臨"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "FunnyOrDie",
|
"name": "FunnyOrDie",
|
||||||
"url": "http://www.funnyordie.com/videos/0732f586d7/heart-shaped-box-literal-video-version",
|
"url": "http://www.funnyordie.com/videos/0732f586d7/heart-shaped-box-literal-video-version",
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# coding: utf-8
|
||||||
|
|
||||||
import datetime
|
import datetime
|
||||||
import re
|
import re
|
||||||
|
|
||||||
@ -12,6 +14,15 @@ class GooglePlusIE(InfoExtractor):
|
|||||||
|
|
||||||
_VALID_URL = r'(?:https://)?plus\.google\.com/(?:[^/]+/)*?posts/(\w+)'
|
_VALID_URL = r'(?:https://)?plus\.google\.com/(?:[^/]+/)*?posts/(\w+)'
|
||||||
IE_NAME = u'plus.google'
|
IE_NAME = u'plus.google'
|
||||||
|
_TEST = {
|
||||||
|
u"url": u"https://plus.google.com/u/0/108897254135232129896/posts/ZButuJc6CtH",
|
||||||
|
u"file": u"ZButuJc6CtH.flv",
|
||||||
|
u"info_dict": {
|
||||||
|
u"upload_date": u"20120613",
|
||||||
|
u"uploader": u"井上ヨシマサ",
|
||||||
|
u"title": u"嘆きの天使 降臨"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
# Extract id from URL
|
# Extract id from URL
|
||||||
|
Loading…
Reference in New Issue
Block a user