diff options
author | 2019-06-13 14:40:27 -0400 | |
---|---|---|
committer | 2019-06-13 22:05:56 +0000 | |
commit | 294f996db033c0f8be6143dad201dc9d8b4b6959 (patch) | |
tree | 94998644fda9a1b13ed4ffb0c786ab4e4f9170c6 /robotframework-onap/eteutils/csvLibrary.py | |
parent | 0932c69548b13eab93f46e81f939dec2803cd741 (diff) |
move dns and uuid to the new format of keywords
Change-Id: I07612b85424c4d687b0c551ecc7727920d2736b0
Issue-ID: TEST-164
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/eteutils/csvLibrary.py')
-rw-r--r-- | robotframework-onap/eteutils/csvLibrary.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/robotframework-onap/eteutils/csvLibrary.py b/robotframework-onap/eteutils/csvLibrary.py deleted file mode 100644 index b38b4a5..0000000 --- a/robotframework-onap/eteutils/csvLibrary.py +++ /dev/null @@ -1,16 +0,0 @@ -import csv -class csvLibrary(object): - - def read_csv_file(self, filename): - '''This creates a keyword named "Read CSV File" - - This keyword takes one argument, which is a path to a .csv file. It - returns a list of rows, with each row being a list of the data in - each column. - ''' - data = [] - with open(filename, 'rb') as csvfile: - reader = csv.reader(csvfile) - for row in reader: - data.append(row) - return data |