build: Change bin/default/python -> bin/python symlink to bin/default/python_modules
[Samba.git] / source4 / scripting / python / samba / tests / samba_tool / processes.py
blob91a5266b54acdffca5747ee1ae82dc825e4d5d0a
1 # Unix SMB/CIFS implementation.
2 # Copyright (C) Andrew Bartlett 2012
4 # based on time.py:
5 # Copyright (C) Sean Dague <sdague@linux.vnet.ibm.com> 2011
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 import os
22 from samba.tests.samba_tool.base import SambaToolCmdTest
24 class ProcessCmdTestCase(SambaToolCmdTest):
25 """Tests for samba-tool process subcommands"""
27 def test_name(self):
28 """Run processes command"""
29 (result, out, err) = self.runcmd("processes", "--name", "samba")
30 self.assertCmdSuccess(result, "Ensuring processes ran successfully")
32 def test_all(self):
33 """Run processes command"""
34 (result, out, err) = self.runcmd("processes")
35 self.assertCmdSuccess(result, "Ensuring processes ran successfully")