Sha256: fa698c3993eee3ac8414f439a1b9bac8921d47deca8ef9224b245779589d10cc
Contents?: true
Size: 419 Bytes
Versions: 17
Compression:
Stored size: 419 Bytes
Contents
# encoding: UTF-8 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
17 entries across 17 versions & 1 rubygems