Remove half-baked unit test

This commit is contained in:
ariarijp
2017-12-05 00:27:18 +09:00
parent 736c014d51
commit ccb20640fe

View File

@@ -1,11 +0,0 @@
from redash.query_runner.script import Script
from tests import BaseTestCase
class TestInit(BaseTestCase):
def test_wildcard(self):
runner = Script({'path': '*'})
self.assertIsInstance(runner, Script)
def test_outside(self):
self.assertRaises(ValueError, lambda: Script({'path': '../../'}))