Sha256: 98f667df6cc5dac29c23c614d03db151834454f261f5dfb2320b6a48b6c718d6

Contents?: true

Size: 1022 Bytes

Versions: 66

Compression:

Stored size: 1022 Bytes

Contents

# encoding: utf-8
require 'spec_helper'
require 'open_classes/string/table_to_array'
require 'open_classes/array/to_table'

describe String do
  context :table_to_array do
    cases = [
      {
        case_no: 1,
        case_title: '> case',
        input: [['header1', 'header2 ', 'header3'], ['line1_1', 'line1_2', 'line1_3']].to_table,
        expected: [['header1', 'header2', 'header3'], ['line1_1', 'line1_2', 'line1_3']]
      },
    ]

    cases.each do |c|
      it "|case_no=#{c[:case_no]}|case_title=#{c[:case_title]}" do
        begin
          case_before c

          # -- given --
          # nothing*

          # -- when --
          actual = c[:input].table_to_array

          # -- then --
          expect(actual).to eq(c[:expected])
        ensure
          case_after c
        end
      end

      def case_before(c)
        # implement each case before
      end

      def case_after(c)
        # implement each case after
      end
    end
  end
end

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
tbpgr_utils-0.0.150 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.149 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.148 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.147 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.146 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.145 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.144 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.143 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.142 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.141 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.140 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.139 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.138 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.137 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.136 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.135 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.134 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.133 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.132 spec/open_classes/string/table_to_array_spec.rb
tbpgr_utils-0.0.131 spec/open_classes/string/table_to_array_spec.rb