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.76 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.75 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.74 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.73 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.72 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.71 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.70 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.69 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.68 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.67 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.66 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.65 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.64 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.63 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.62 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.61 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.60 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.59 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.58 spec/open_classes/array/together_concat_spec.rb
tbpgr_utils-0.0.57 spec/open_classes/array/together_concat_spec.rb