Sha256: fa5e2700d1691069901ed6fde0815b9b01c4e9662a4912af63a786906ab2f261
Contents?: true
Size: 854 Bytes
Versions: 2
Compression:
Stored size: 854 Bytes
Contents
require_relative "test_helper" class RowReaderTest < Minitest::Test describe IOStreams::Row::Reader do let :file_name do File.join(File.dirname(__FILE__), "files", "test.csv") end let :expected do CSV.read(file_name) end describe "#each" do it "file" do rows = [] count = IOStreams::Row::Reader.file(file_name) do |io| io.each { |row| rows << row } end assert_equal expected, rows assert_equal expected.size, count end it "stream" do rows = [] count = IOStreams::Line::Reader.file(file_name) do |file| IOStreams::Row::Reader.stream(file) do |io| io.each { |row| rows << row } end end assert_equal expected, rows assert_equal expected.size, count end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
iostreams-1.10.3 | test/row_reader_test.rb |
iostreams-1.10.2 | test/row_reader_test.rb |