summaryrefslogtreecommitdiffstats
path: root/src/account/test/methods.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/account/test/methods.py')
-rw-r--r--src/account/test/methods.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/account/test/methods.py b/src/account/test/methods.py
index 4043ddf..9659d4f 100644
--- a/src/account/test/methods.py
+++ b/src/account/test/methods.py
@@ -97,19 +97,6 @@ def create_group(group_name):
if not group_exists(group_name):
subprocess.check_call(["groupadd", group_name])
-def random_string(strength=6, chars=None, prefix=""):
- """
- Generate a random string, e.g. usable as UID/GID
-
- strength is count of random characters in the final string. chars
- is sequence of characters to choose from, and prefix can be provided
- to prepend it to final string.
- """
- if chars is None:
- chars = string.ascii_uppercase + string.digits
- salt = ''.join([random.choice(chars) for x in range(strength)])
- return prefix + salt
-
def random_shell():
"""
Make up a funny shell