Step 2: Move test folder to root
[integration/test.git] / test / csit / suites / openstack / neutron / __init__.robot
diff --git a/test/csit/suites/openstack/neutron/__init__.robot b/test/csit/suites/openstack/neutron/__init__.robot
deleted file mode 100644 (file)
index e1640c1..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-*** Settings ***
-Documentation     Test suite for Neutron Plugin
-Library           SSHLibrary
-Library           Collections
-Library           RequestsLibrary
-Library           ../../../libraries/Common.py
-Variables         ../../../variables/Variables.py
-
-*** Variables ***
-${UserInfo}       {"auth": {"tenantName": "admin", "passwordCredentials": {"username": "admin", "password": "admin"}}}
-
-*** Keywords ***
-Start Suite
-    Create Session    KeyStoneSession    http://${OPENSTACK}:5000    headers=${HEADERS}
-    ${resp}    post    KeyStoneSession    /v2.0/tokens    ${UserInfo}
-    Should Be Equal As Strings    ${resp.status_code}    200
-    ${result}    To JSON    ${resp.content}
-    ${result}    Get From Dictionary    ${result}    access
-    ${result}    Get From Dictionary    ${result}    token
-    ${TOKEN}    Get From Dictionary    ${result}    id
-    ${X-AUTH}    Create Dictionary    X-Auth-Token=${TOKEN}    Content-Type=application/json
-    Set Global Variable    ${X-AUTH}
-
-Stop Suite
-    Delete All Sessions