Sha256: 7384e201b1a5cddfb877edf7712b42c27a439798044150fb8969099301875b58

Contents?: true

Size: 1.1 KB

Versions: 8

Compression:

Stored size: 1.1 KB

Contents

require 'rib/test'
require 'rib/core/underscore'

copy :underscore do
  would 'set _' do
    setup
    mock(@shell).get_input{'_'}
    mock(@shell).get_input{'10**2'}
    mock(@shell).get_input{'_'}
    @shell.loop_once.should.eq [nil, nil]
    @shell.loop_once
    @shell.loop_once.should.eq [100, nil]
  end

  would 'not set _ if already there' do
    bound = Object.new
    def bound._
      'hey'
    end
    setup(bound)
    mock(@shell).get_input{'_'}
    mock(@shell).get_input{'10**2'}
    mock(@shell).get_input{'_'}
    @shell.loop_once.should.eq ['hey', nil]
    @shell.loop_once
    @shell.loop_once.should.eq ['hey', nil]
  end

  would 'set __' do
    setup
    stub(@shell).puts{}.with_any_args
    mock(@shell).get_input{'XD'}
    mock(@shell).get_input{'__'}
    @shell.loop_once
    @shell.loop_once.first.should.kind_of?(NameError)
  end
end

describe Rib::Underscore do
  paste :rib

  def setup bound=Object.new
    @shell = Rib::Shell.new(
      :binding => bound.instance_eval{binding}).before_loop
    stub(@shell).puts(is_a(String)){}
  end

  test_for Rib::Underscore do
    paste :underscore
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rib-1.4.0 test/core/test_underscore.rb
rib-1.3.1 test/core/test_underscore.rb
rib-1.3.0 test/core/test_underscore.rb
rib-1.2.91 test/core/test_underscore.rb
rib-1.2.9 test/core/test_underscore.rb
rib-1.2.8 test/core/test_underscore.rb
rib-1.2.7 test/core/test_underscore.rb
rib-1.2.6 test/core/test_underscore.rb