Sha256: d464ec0f5facfca80b14dc1d9721aa58ec91347ce3b5ff685f6ad70e6cb24c41

Contents?: true

Size: 1.17 KB

Versions: 80

Compression:

Stored size: 1.17 KB

Contents

# encoding: utf-8
require 'spec_helper'
require 'tbpgr_utils'

describe Array do
  context :together_concat do
    cases = [
      {
        case_no: 1,
        case_title: 'valid case',
        inputs: [[1, 2, 3], %w{one two three}],
        add_list: [4, 5, 6],
        method_name: :together_concat,
        expected: [[1, 2, 3, 4, 5, 6], ['one', 'two', 'three', 4, 5, 6]],
      },
      {
        case_no: 2,
        case_title: 'valid case',
        inputs: [[1, 2, 3], %w{one two three}],
        add_list: [4, 5, 6],
        method_name: :tconcat,
        expected: [[1, 2, 3, 4, 5, 6], ['one', 'two', 'three', 4, 5, 6]],
      },
    ]

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

          # -- given --
          # nothing

          # -- when --
          c[:inputs].send c[:method_name], c[:add_list]

          # -- then --
          expect(c[:inputs]).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

80 entries across 80 versions & 1 rubygems

Version Path
tbpgr_utils-0.0.96 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.95 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.94 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.93 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.92 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.91 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.90 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.89 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.88 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.87 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.86 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.85 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.84 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.83 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.82 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.81 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.80 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.79 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.78 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.77 spec/open_classes/array/together_concat_spec.rb