func TestPopularTV(t *testing.T) { tmdb := New() _, err := tmdb.PopularTV() if err != nil { t.Errorf("It should not fail, but got an error: %s", err) } }
func TestBadURLPopularTV(t *testing.T) { tmdb := New() tmdb.BaseURL, _ = url.Parse("http://foo.bar/") _, err := tmdb.PopularTV() if err == nil { t.Errorf("It should fail because the BaseURL %s, does not exist.", tmdb.BaseURL) } }