You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
517 B
24 lines
517 B
"""Test the kernels service API."""
|
|
|
|
|
|
import os
|
|
import sys
|
|
import json
|
|
|
|
import requests
|
|
|
|
from IPython.html.tests.launchnotebook import NotebookTestBase
|
|
|
|
|
|
class KernelAPITest(NotebookTestBase):
|
|
"""Test the kernels web service API"""
|
|
|
|
def base_url(self):
|
|
return super(KernelAPITest,self).base_url() + 'api/kernels'
|
|
|
|
def test_no_kernels(self):
|
|
"""Make sure there are no kernels running at the start"""
|
|
url = self.base_url()
|
|
r = requests.get(url)
|
|
assert r.json() == []
|