diff options
author | DR695H <dr695h@att.com> | 2019-07-01 13:58:49 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-07-01 13:58:49 -0400 |
commit | 205db3c1a955f9e96776019deb2922fd208557a7 (patch) | |
tree | 07927a1dd809e65c24ee57b7b86b5fb58fb72c14 /robotframework-onap/ONAPLibrary/Utilities.py | |
parent | 96707b207ca00d80e622a0351b4566ebc87ace61 (diff) |
adding in new keywords for base64, oof and sniro
Issue-ID: TEST-171
Change-Id: Ib305d17ca4847bf1e5740bd1983ca1f66b75bbd8
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary/Utilities.py')
-rw-r--r-- | robotframework-onap/ONAPLibrary/Utilities.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/robotframework-onap/ONAPLibrary/Utilities.py b/robotframework-onap/ONAPLibrary/Utilities.py index 8c1f355..f791c9a 100644 --- a/robotframework-onap/ONAPLibrary/Utilities.py +++ b/robotframework-onap/ONAPLibrary/Utilities.py @@ -17,16 +17,18 @@ from ONAPLibrary.DNSKeywords import DNSKeywords from ONAPLibrary.SocketKeywords import SocketKeywords from ONAPLibrary.UUIDKeywords import UUIDKeywords from ONAPLibrary.HTTPKeywords import HTTPKeywords +from ONAPLibrary.Base64Keywords import Base64Keywords class Utilities(HybridCore): - """ DNS Keywords are useful for DNS requests """ + """ Keywords are useful for helper functions requests """ def __init__(self): self.keyword_implementors = [ DNSKeywords(), SocketKeywords(), UUIDKeywords(), - HTTPKeywords() + HTTPKeywords(), + Base64Keywords() ] HybridCore.__init__(self, self.keyword_implementors) |