P
This commit is contained in:
parent
fbdeacdc76
commit
48aeb9426f
26 changed files with 5550 additions and 0 deletions
12
lib/yql/tests/test_services.py
Normal file
12
lib/yql/tests/test_services.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from unittest import TestCase
|
||||
|
||||
from nose.tools import raises
|
||||
|
||||
import yql
|
||||
|
||||
|
||||
class PublicTest(TestCase):
|
||||
@raises(ValueError)
|
||||
def test_cannot_use_unrecognizable_endpoint(self):
|
||||
y = yql.Public()
|
||||
y.endpoint = 'some-strange-endpoint'
|
Reference in a new issue