Sha256: b296c8593a0e48ba69666cd7402b246c24e575dd79b9513f22ca391795f0f225
Contents?: true
Size: 620 Bytes
Versions: 29
Compression:
Stored size: 620 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2015 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 data = 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
29 entries across 29 versions & 2 rubygems