本文整理匯總了Golang中github.com/haarts/getme/store.Show.Seasons方法的典型用法代碼示例。如果您正苦於以下問題:Golang Show.Seasons方法的具體用法?Golang Show.Seasons怎麽用?Golang Show.Seasons使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/haarts/getme/store.Show
的用法示例。
在下文中一共展示了Show.Seasons方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: TestPendingItems
func TestPendingItems(t *testing.T) {
show := store.Show{}
episodes := []*store.Episode{
{Pending: true},
{Pending: true},
{Pending: true},
}
season1 := store.Season{Season: 1, Episodes: episodes}
show.Seasons = append(show.Seasons, &season1)
if len(show.PendingSeasons()) != 0 {
t.Error("All episodes are pending but it's from the last seasons thus no seasons should be returned, got:", len(show.PendingSeasons()))
}
if len(show.PendingEpisodes()) != 3 {
t.Error("All episodes are pending, got:", len(show.PendingEpisodes()))
}
episodes = []*store.Episode{
{Pending: true},
{Pending: true},
}
season2 := store.Season{Season: 2, Episodes: episodes}
show.Seasons = append(show.Seasons, &season2)
if len(show.PendingSeasons()) != 1 {
t.Error("Expected 2 items representing the episodes of the last season and 1 item representing the first season.")
}
if len(show.PendingEpisodes()) != 2 {
t.Error("Expected 2 items representing the episodes of the last season and 1 item representing the first season.")
}
}
示例2: addSeason
func addSeason(show *store.Show, season Season) {
newSeason := store.Season{
Season: season.Season,
}
for _, episode := range season.Episodes {
newEpisode := store.Episode{
Episode: episode.Episode,
AirDate: episode.AirDate,
Title: episode.Title,
Pending: true,
}
newSeason.Episodes = append(newSeason.Episodes, &newEpisode)
}
show.Seasons = append(show.Seasons, &newSeason)
}