Beispiel #1
0
 def eject(self, udi):
     if util.iscommand("eject"):
         pipe = subprocess.Popen(['eject', self.get_block_device(udi)],
                 stderr=subprocess.PIPE, close_fds=True)
         if pipe.wait() == 0: return True
         else: return pipe.stderr.read()
     else:
         return _("No eject command found.")
Beispiel #2
0
 def exists(self):
     return util.iscommand(self.command.split()[0])
Beispiel #3
0
    def test_dir_in_path(self): self.failIf(util.iscommand("X11"))
add(Tiscommand)
Beispiel #4
0
 def test_symlink(self): self.failUnless(util.iscommand("pidof"))
 def test_dir(self): self.failIf(util.iscommand("/bin"))
Beispiel #5
0
 def test_dir(self): self.failIf(util.iscommand("/bin"))
 def test_dir_in_path(self): self.failIf(util.iscommand("X11"))
Beispiel #6
0
 def test_empty(self): self.failIf(util.iscommand(""))
 def test_symlink(self): self.failUnless(util.iscommand("pidof"))
Beispiel #7
0
 def test_notfull(self): self.failIf(util.iscommand("/bin/zzzzzzzzz"))
 def test_empty(self): self.failIf(util.iscommand(""))
Beispiel #8
0
 def test_notpartial(self): self.failIf(util.iscommand("zzzzzzzzz"))
 def test_notfull(self): self.failIf(util.iscommand("/bin/zzzzzzzzz"))
Beispiel #9
0
 def test_isfull(self): self.failUnless(util.iscommand("/bin/ls"))
 def test_notpartial(self): self.failIf(util.iscommand("zzzzzzzzz"))
Beispiel #10
0
 def test_ispartial(self): self.failUnless(util.iscommand("ls"))
 def test_isfull(self): self.failUnless(util.iscommand("/bin/ls"))