Sha256: 2a03b1ccbd395dd6ef24e7210c5deaccdf1fd5d81001cfd29d857eee786dc5dc
Contents?: true
Size: 614 Bytes
Versions: 13
Compression:
Stored size: 614 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2017 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. require 'gooddata/helpers/csv_helper' describe GoodData::Helpers::Csv do describe '#read' do it 'Reads data from CSV file' do GoodData::Helpers::Csv.read(:path => CsvHelper::CSV_PATH_IMPORT) end end describe '#write' do it 'Writes data to CSV' do data = [] GoodData::Helpers::Csv.write(:path => CsvHelper::CSV_PATH_EXPORT, :data => data) end end end
Version data entries
13 entries across 13 versions & 1 rubygems