mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
11 lines
179 B
Python
11 lines
179 B
Python
|
|
"""
|
||
|
|
Unit test functions in installer.py
|
||
|
|
"""
|
||
|
|
from tljh import installer
|
||
|
|
import os
|
||
|
|
|
||
|
|
|
||
|
|
def test_ensure_node():
|
||
|
|
installer.ensure_node()
|
||
|
|
assert os.path.exists('/usr/bin/node')
|