mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Guard against non-existent spell/fortune/wtf commands.
This commit is contained in:
parent
7cf27435bb
commit
d5ed1e772c
@ -32,10 +32,13 @@
|
||||
from testsupport import *
|
||||
|
||||
import os
|
||||
import utils
|
||||
|
||||
if os.name == 'posix':
|
||||
class UnixTestCase(PluginTestCase, PluginDocumentation):
|
||||
plugins = ('Unix',)
|
||||
if utils.findBinaryInPath('aspell') is not None or \
|
||||
utils.findBinaryInPath('ispell') is not None:
|
||||
def testSpell(self):
|
||||
self.assertRegexp('spell Strike', 'correctly')
|
||||
self.assertRegexp('spell asdlkjsdalfkjasdflkasjdflskdfjlsd',
|
||||
@ -58,6 +61,7 @@ if os.name == 'posix':
|
||||
def testCrypt(self):
|
||||
self.assertNotError('crypt jemfinch')
|
||||
|
||||
if utils.findBinaryInPath('fortune') is not None:
|
||||
def testFortune(self):
|
||||
self.assertNotError('fortune')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user