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.90 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.89 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.88 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.87 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.86 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.85 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.84 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.83 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.82 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.81 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.80 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.79 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.78 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.77 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.76 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.75 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.74 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.73 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.72 spec/eval_helper/each_brace_code_spec.rb
tbpgr_utils-0.0.71 spec/eval_helper/each_brace_code_spec.rb