build: Change bin/default/python -> bin/python symlink to bin/default/python_modules
[samba.git] / python / samba / tests / samba_tool / processes.py
1 # Unix SMB/CIFS implementation.
2 # Copyright (C) Andrew Bartlett 2012
3 #
4 # based on time.py:
5 # Copyright (C) Sean Dague <sdague@linux.vnet.ibm.com> 2011
6 #
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.
11 #
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.
16 #
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/>.
19 #
20
21 import os
22 from samba.tests.samba_tool.base import SambaToolCmdTest
23
24 class ProcessCmdTestCase(SambaToolCmdTest):
25     """Tests for samba-tool process subcommands"""
26
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")
31
32     def test_all(self):
33         """Run processes command"""
34         (result, out, err) = self.runcmd("processes")
35         self.assertCmdSuccess(result, "Ensuring processes ran successfully")