diff options
Diffstat (limited to 'tests/ccsdk/oran/suite2')
-rw-r--r-- | tests/ccsdk/oran/suite2/__init__.robot | 2 | ||||
-rw-r--r-- | tests/ccsdk/oran/suite2/test1.robot | 30 |
2 files changed, 0 insertions, 32 deletions
diff --git a/tests/ccsdk/oran/suite2/__init__.robot b/tests/ccsdk/oran/suite2/__init__.robot deleted file mode 100644 index c9bbad32..00000000 --- a/tests/ccsdk/oran/suite2/__init__.robot +++ /dev/null @@ -1,2 +0,0 @@ -*** Settings *** -Documentation Ccsdk Oran - Suite 2 diff --git a/tests/ccsdk/oran/suite2/test1.robot b/tests/ccsdk/oran/suite2/test1.robot deleted file mode 100644 index 5d354dde..00000000 --- a/tests/ccsdk/oran/suite2/test1.robot +++ /dev/null @@ -1,30 +0,0 @@ -*** Settings *** -Library OperatingSystem -Library RequestsLibrary - -*** Variables *** -${MESSAGE} Hello, world! - -*** Test Cases *** -String Equality Test - Should Be Equal ${MESSAGE} Hello, world! - -Dir Test - [Documentation] Check if /tmp exists - Log ${MESSAGE} - CheckDir /tmp - -Url Test - [Documentation] Check if www.onap.org can be reached - Create Session openo http://www.onap.org - CheckUrl openo / - -*** Keywords *** -CheckDir - [Arguments] ${path} - Directory Should Exist ${path} - -CheckUrl - [Arguments] ${session} ${path} - ${resp}= Get Request ${session} ${path} - Should Be Equal As Integers ${resp.status_code} 200 |