Sha256: 88eca98bd69685ae32931f877aac994bcd52c91f9f7567945d548ff74c22e673

Contents?: true

Size: 1.34 KB

Versions: 99

Compression:

Stored size: 1.34 KB

Contents

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

describe 'EvalHelper' do
  context :if_code do
    class EvalHelperTest
      include EvalHelper

      def hoge(hash)
        msg = hash[:input]
        code = if_code(hash[:if_cond], hash[:if_proc], hash[:else_proc])
        instance_eval code
      end
    end
    cases = [
      {
        case_no: 1,
        case_title: 'if case',
        input: 'test',
        if_cond: "msg == 'test'",
        if_proc: 'true',
        else_proc: 'false',
        expected: true,
      },
      {
        case_no: 2,
        case_title: 'else case',
        input: 'not_test',
        if_cond: "msg == 'test'",
        if_proc: 'true',
        else_proc: 'false',
        expected: false,
      },
    ]

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

          # -- given --
          eval_helper = EvalHelperTest.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

99 entries across 99 versions & 1 rubygems

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