Sha256: ffdb5dd11d59eb6b95c90d9fce3366162482b2c3ae0a3f70a773889c2c403ce2

Contents?: true

Size: 1.25 KB

Versions: 80

Compression:

Stored size: 1.25 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

80 entries across 80 versions & 1 rubygems

Version Path
tbpgr_utils-0.0.116 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.115 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.114 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.113 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.112 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.111 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.110 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.109 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.108 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.107 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.106 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.105 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.104 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.103 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.102 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.101 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.100 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.99 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.98 spec/open_classes/array/together_at_spec.rb
tbpgr_utils-0.0.97 spec/open_classes/array/together_at_spec.rb