(self, contents)
| 193 | imported_graph.control_outputs) |
| 194 | |
| 195 | def _make_asset(self, contents): |
| 196 | filename = tempfile.mktemp(prefix=self.get_temp_dir()) |
| 197 | with open(filename, "w") as f: |
| 198 | f.write(contents) |
| 199 | return filename |
| 200 | |
| 201 | @test_util.run_in_graph_and_eager_modes |
| 202 | def test_assets(self, cycles): |
no test coverage detected