(self)
| 919 | assert local.sysfind("a", checker=lambda x: None) is None |
| 920 | |
| 921 | def test_sysexec(self): |
| 922 | x = local.sysfind("ls") |
| 923 | out = x.sysexec("-a") |
| 924 | for x in local().listdir(): |
| 925 | assert out.find(x.basename) != -1 |
| 926 | |
| 927 | def test_sysexec_failing(self): |
| 928 | try: |