Sha256: d80515dba0ed131e9c53c5b32f914f12143e52b6ff83e34f38815206b29c9c22

Contents?: true

Size: 1.05 KB

Versions: 85

Compression:

Stored size: 1.05 KB

Contents

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

describe 'EvalHelper' do
  context :each_do_code do
    class EvalHelperEachDoTest
      include EvalHelper

      def hoge(hash)
        each_do_code(hash[:target], hash[:proc])
      end
    end
    cases = [
      {
        case_no: 1,
        case_title: 'valid case',
        target: '[:a, :b]',
        proc: "puts \"\#{v}1\"\nputs \"\#{v}2\"\n",
        expected: "[:a, :b].each do |v|\n  puts \"\#{v}1\"\n  puts \"\#{v}2\"\nend",
      }
    ]

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

          # -- given --
          eval_helper = EvalHelperEachDoTest.new

          # -- when --
          actual = eval_helper.hoge(c)

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

85 entries across 85 versions & 1 rubygems

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