Sha256: ba1dd957db920465d3f45a42820f6d28bb29da74e6e8ff7d3e46ea379a4eda6c

Contents?: true

Size: 1021 Bytes

Versions: 86

Compression:

Stored size: 1021 Bytes

Contents

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

describe 'EvalHelper' do
  context :each_brace_code do
    class EvalHelperEachBraceTest
      include EvalHelper

      def hoge(hash)
        each_brace_code(hash[:target], hash[:proc])
      end
    end
    cases = [
      {
        case_no: 1,
        case_title: 'unless case',
        target: '[:a, :b]',
        proc: 'puts v',
        expected: '[:a, :b].each { |v|puts v }',
      },
    ]

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

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

86 entries across 86 versions & 1 rubygems

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