Files
herolib/lib/osal/screen/screen_test.v
2024-12-25 08:40:56 +01:00

18 lines
389 B
V

module screen
import freeflowuniverse.herolib.ui.console
import freeflowuniverse.herolib.osal
import os
import time
pub fn testsuite_begin() ! {
mut screen_factory := new(reset: true)!
}
pub fn test_screen_status() ! {
mut screen_factory := new()!
mut screen := screen_factory.add(name: 'testservice', cmd: 'redis-server')!
status := screen.status()!
// assert status == .active
}