blob: 3507d56bbcbebcffaf4d501d7541efc58ed98406 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
"""Example use of jupyter_kernel_test, with tests for IPython."""
import unittest
import jupyter_kernel_test as jkt
class ScilabKernelTests(jkt.KernelTests):
kernel_name = "scilab"
language_name = "scilab"
code_hello_world = "disp('hello, world')"
completion_samples = [
{
'text': 'one',
'matches': {'ones'},
},
]
if __name__ == '__main__':
unittest.main()
|