Sha256: 43c114be59683f8a2cf3ea03fd1a68018d0f7f715d0f8bd9ce572b45ad3b86c4
Contents?: true
Size: 877 Bytes
Versions: 18
Compression:
Stored size: 877 Bytes
Contents
# encoding: utf-8 require 'spec_helper' require 'open_classes/integer/each_digit_with_index' describe Integer do context :each_digit_with_index do cases = [ { case_no: 1, case_title: 'valid case', input: 12_345, expected: [1, 3, 5, 7, 9], }, ] 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].each_digit_with_index { |v, i|actual << v + i } # -- 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
18 entries across 18 versions & 1 rubygems