()
| 4 | |
| 5 | |
| 6 | def test_search(): |
| 7 | if not credentials_available(): |
| 8 | warnings.warn( |
| 9 | "Skipped test_search because there were no credentials available." |
| 10 | ) |
| 11 | return |
| 12 | sess = session() |
| 13 | |
| 14 | print(sess.search_projects()) |
| 15 | print(sess.explore_projects()) |
| 16 | print(sess.search_studios()) |
| 17 | print(sess.explore_studios()) |
| 18 | |
| 19 | |
| 20 | if __name__ == "__main__": |
no test coverage detected