mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
samba.netcmd: Reintroduce Command.name.
This commit is contained in:
@ -56,3 +56,8 @@ class CommandTests(samba.tests.TestCase):
|
||||
class cmd_foo(Command):
|
||||
"""Mydescription"""
|
||||
self.assertEquals("Mydescription", cmd_foo().description)
|
||||
|
||||
def test_name(self):
|
||||
class cmd_foo(Command):
|
||||
pass
|
||||
self.assertEquals("foo", cmd_foo().name)
|
||||
|
Reference in New Issue
Block a user