mirror of
https://github.com/webmin/webmin.git
synced 2026-02-08 00:12:14 +00:00
10 lines
241 B
Perl
10 lines
241 B
Perl
#!/usr/bin/perl -w
|
|
# Test utility functions to be sure they do something utilitiful
|
|
use strict;
|
|
use Test::More tests => 1;
|
|
use OsChooser;
|
|
|
|
# Problematic...when run from harness, will not have tty
|
|
ok(OsChooser::have_tty() == 1, "have_tty");
|
|
|