Sha256: 67d6fc3735d628177a2d405059b2acfc7d8c9716f9a039f62ac291e6fa328f58

Contents?: true

Size: 1.79 KB

Versions: 5

Compression:

Stored size: 1.79 KB

Contents

require File.join(File.dirname(__FILE__), '..', 'spec_helper')

describe "Proc#to_source from do ... end block (w nested literal keyword)" do

  # See http://redmine.ruby-lang.org/issues/show/3764

  should 'handle :class' do
    (
      lambda do
        x = :class
      end
    ).should.be having_source('proc { x = :class }')
  end

  should 'handle :module' do
    (
      lambda do
        x = :module
      end
    ).should.be having_source('proc { x = :module }')
  end

  should 'handle :def' do
    (
      lambda do
        x = :def
      end
    ).should.be having_source('proc { x = :def }')
  end

  should 'handle :if' do
    (
      lambda do
        x = :if
      end
    ).should.be having_source('proc { x = :if }')
  end

  should 'handle :unless' do
    (
      lambda do
        x = :unless
      end
    ).should.be having_source('proc { x = :unless }')
  end

  should 'handle :for' do
    (
      lambda do
        x = :for
      end
    ).should.be having_source('proc { x = :for }')
  end

  should 'handle :while' do
    (
      lambda do
        x = :while
      end
    ).should.be having_source('proc { x = :while }')
  end

  should 'handle :until' do
    (
      lambda do
        x = :until
      end
    ).should.be having_source('proc { x = :until }')
  end

  should 'handle :begin' do
    (
      lambda do
        x = :begin
      end
    ).should.be having_source('proc { x = :begin }')
  end

  should 'handle :case' do
    (
      lambda do
        x = :case
      end
    ).should.be having_source('proc { x = :case }')
  end

  should 'handle :do' do
    (
      lambda do
        x = :do
      end
    ).should.be having_source('proc { x = :do }')
  end

  should 'handle :end' do
    (
      lambda do
        x = :end
      end
    ).should.be having_source('proc { x = :end }')
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
sourcify-0.3.0 spec/proc/to_source_from_do_end_block_w_nested_literal_keyword_spec.rb
sourcify-0.2.3 spec/proc/to_source_from_do_end_block_w_nested_literal_keyword_spec.rb
sourcify-0.2.2.1 spec/proc/to_source_from_do_end_block_w_nested_literal_keyword_spec.rb
sourcify-0.2.1 spec/proc/to_source_from_do_end_block_w_nested_literal_keyword_spec.rb
sourcify-0.2.0 spec/proc/to_source_from_do_end_block_w_nested_literal_keyword_spec.rb