From 8bf49988b7d6af5fdb48b5d2c1f830fbe318e83a Mon Sep 17 00:00:00 2001 From: sv764t Date: Thu, 25 Oct 2018 01:42:52 -0400 Subject: Change Management Schedule Optimization Adding scripts and robot test suites for cmso as per CSIT procedure Fixing the start up scripts to use docker Removing .pyc files Fix copyright headers for the shell scripts Change-Id: I61492abd5d5060b5a773dec74320f2ecfc0fcbf5 Issue-ID: OPTFRA-382 Signed-off-by: sv764t Signed-off-by: vrvarma --- tests/optf-cmso/cmso/attlibs/UID.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/optf-cmso/cmso/attlibs/UID.py (limited to 'tests/optf-cmso/cmso/attlibs/UID.py') diff --git a/tests/optf-cmso/cmso/attlibs/UID.py b/tests/optf-cmso/cmso/attlibs/UID.py new file mode 100644 index 00000000..43748096 --- /dev/null +++ b/tests/optf-cmso/cmso/attlibs/UID.py @@ -0,0 +1,8 @@ +import uuid + +class UID: + """UUID is a simple library that generates a uuid""" + + def generate_UUID(self): + """generate a uuid""" + return uuid.uuid4() \ No newline at end of file -- cgit 1.2.3-korg