Sha256: 0a57dcf20473a986fd72c3b51b610a52051fa164663c0ac7efc27982c27f8ba0

Contents?: true

Size: 1.44 KB

Versions: 26

Compression:

Stored size: 1.44 KB

Contents

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

describe Hash do
  context :>> do
    cases = [
      {
        case_no: 1,
        case_title: 'no args case',
        input: { key1: 'value1', key2: 'value2' },
        method_name: :upcase,
        expected: { key1: 'VALUE1', key2: 'VALUE2' },
      },
      {
        case_no: 2,
        case_title: 'have args case',
        input: { key1: 'value1', key2: 'value2' },
        method_name: :+,
        args: '_hoge',
        expected: { key1: 'value1_hoge', key2: 'value2_hoge' },
      },
      {
        case_no: 3,
        case_title: 'to_h case',
        input: { key1: 'value1', key2: 'value2' },
        method_name: :to_h,
        expected: { key1: 'value1', key2: 'value2' },
      },
    ]

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

          # -- given --
          # nothing

          # -- when/then --
          if c[:args]
            actual = c[:input].>>.send c[:method_name], *c[:args]
          else
            actual = c[:input].>>.send c[:method_name]
          end

          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

26 entries across 26 versions & 1 rubygems

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