()
| 5 | |
| 6 | |
| 7 | def test_project(): |
| 8 | if not util.credentials_available(): |
| 9 | warnings.warn( |
| 10 | "Skipped test_project because there were no credentials available." |
| 11 | ) |
| 12 | return |
| 13 | sess = util.session() |
| 14 | |
| 15 | project = sess.connect_project(104) |
| 16 | body = project.body() |
| 17 | body.to_json() # do nothing with the data, just make sure it works. |
| 18 | |
| 19 | |
| 20 | if __name__ == "__main__": |
no test coverage detected