Sha256: d7fa28cb3df14d1ad63a8e666c0013405c15fe2ff7b03483ebf5840c90cd1dcb

Contents?: true

Size: 1.31 KB

Versions: 34

Compression:

Stored size: 1.31 KB

Contents

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

describe Array do
  context :together_at do
    cases = [
      {
        case_no: 1,
        case_title: 'valid case',
        inputs: [[1, 2, 3], %w(one two three)],
        index: 2,
        method_name: :together_at,
        expected: [3, 'three'],
      },
      {
        case_no: 2,
        case_title: 'contain nil case',
        inputs: [[1, 2, 3], %w(one two)],
        index: 2,
        method_name: :together_at,
        expected: [3, nil],
      },
      {
        case_no: 3,
        case_title: 'valid case',
        inputs: [[1, 2, 3], %w(one two three)],
        index: 2,
        method_name: :tat,
        expected: [3, 'three'],
      },
    ]

    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[:inputs].send c[:method_name], c[:index]

          # -- 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

34 entries across 34 versions & 1 rubygems

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