spec/unit/helpers/csv_helper_spec.rb in gooddata-0.6.49 vs spec/unit/helpers/csv_helper_spec.rb in gooddata-0.6.50

- old
+ new

@@ -1,22 +1,22 @@ # encoding: UTF-8 # -# Copyright (c) 2010-2015 GoodData Corporation. All rights reserved. +# 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 - data = GoodData::Helpers::Csv.read(:path => CsvHelper::CSV_PATH_IMPORT) + 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 \ No newline at end of file +end