Sha256: 89d0e4be2c8a2a2ae19953c4ac4c79e772a9b5bdb8c81654ee43d73fecb0de80

Contents?: true

Size: 929 Bytes

Versions: 88

Compression:

Stored size: 929 Bytes

Contents

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

describe String do
  context :hyphen_to_a do
    cases = [
      {
        case_no: 1,
        case_title: 'number case',
        input: '1-5',
        expected: [1, 2, 3, 4, 5]
      },
      {
        case_no: 2,
        case_title: 'alphabet case',
        input: '"a"-"e"',
        expected: ['a', 'b', 'c', 'd', 'e']
      },
    ]

    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[:input].hyphen_to_a

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

88 entries across 88 versions & 1 rubygems

Version Path
tbpgr_utils-0.0.110 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.109 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.108 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.107 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.106 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.105 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.104 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.103 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.102 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.101 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.100 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.99 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.98 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.97 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.96 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.95 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.94 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.93 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.92 spec/open_classes/string/hyphen_to_a_spec.rb
tbpgr_utils-0.0.91 spec/open_classes/string/hyphen_to_a_spec.rb