Пример #1
0
func TestPopularMovie(t *testing.T) {
	tmdb := New()
	_, err := tmdb.PopularMovie()
	if err != nil {
		t.Errorf("It should not fail, but got an error: %s", err)
	}
}
Пример #2
0
func TestBadURLPopularMovie(t *testing.T) {
	tmdb := New()
	tmdb.BaseURL, _ = url.Parse("http://foo.bar/")
	_, err := tmdb.PopularMovie()
	if err == nil {
		t.Errorf("It should fail because the BaseURL %s, does not exist.", tmdb.BaseURL)
	}
}