mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
14 lines
526 B
Swift
14 lines
526 B
Swift
import Foundation
|
|
|
|
extension ChannelPlaylist {
|
|
static var fixture: ChannelPlaylist {
|
|
ChannelPlaylist(
|
|
id: "fixture-channel-playlist",
|
|
title: "Playlist with a very long title that will not fit easily in the screen",
|
|
thumbnailURL: URL(string: "https://i.ytimg.com/vi/hT_nvWreIhg/hqdefault.jpg?sqp=-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ==&rs=AOn4CLAAD21_-Bo6Td1z3cV-UFyoi1flEg")!,
|
|
channel: Video.fixture.channel,
|
|
videos: Video.allFixtures
|
|
)
|
|
}
|
|
}
|