Sha256: db7685be38403a146e3c6d615a7511fdcde17d67e972349e8e531b98e9a4dc0c

Contents?: true

Size: 1.34 KB

Versions: 113

Compression:

Stored size: 1.34 KB

Contents

# encoding: utf-8
require 'spec_helper'
require 'active_support/core_ext/object/inclusion'
require 'tbpgr_utils'

describe Array do
  context :together_shuffle do
    cases = [
      {
        case_no: 1,
        case_title: 'not empty case',
        inputs: [[1, 2], [5, 6]],
        method_name: 'together_shuffle',
        expected_first: 'actual[0].sort == c[:inputs][0]',
        expected_second: 'actual[1].sort == c[:inputs][1]',
      },
      {
        case_no: 2,
        case_title: 'not empty case',
        inputs: [[1, 2], [5, 6]],
        method_name: 'tshuffle',
        expected_first: 'actual[0].sort == c[:inputs][0]',
        expected_second: 'actual[1].sort == c[:inputs][1]',
      },
    ]

    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]

          # -- then --
          expect(actual[0].sort).to eq(c[:inputs][0])
          expect(actual[1].sort).to eq(c[:inputs][1])
        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

113 entries across 113 versions & 1 rubygems

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