(self)
| 12 | |
| 13 | class DataFileTest(unittest.TestCase): |
| 14 | def setUp(self): |
| 15 | self.client = Algorithmia.client() |
| 16 | if not self.client.dir("data://.my/empty").exists(): |
| 17 | self.client.dir("data://.my/empty").create() |
| 18 | |
| 19 | def test_get_nonexistant(self): |
| 20 | df = self.client.file('data://.my/nonexistant/nonreal') |