Sha256: 635f681f52687271c4ff3e67bbf1f32522ea34ede4093a4eb0a546ccd613290a

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

require 'rib/test'
require 'rib/core/squeeze_history'

copy :squeeze_history do
  would 'after_loop saves squeezed history' do
    @shell.history.push(*@input)
    @shell.after_loop
    File.read(@history).should.eq %w[foo bar foo bar].join("\n") + "\n"
  end

  would 'loop_once squeeze history' do
    times = @input.size
    stub(@shell).get_input{ (@shell.history << "'#{@input.shift}'").last }
    stub(@shell).print_result{}.with_any_args
    times.times{ @shell.loop_once }
    @shell.history.to_a.should.eq %w[foo bar foo bar].map{ |i| "'#{i}'" }
  end

  would 'be disabled if disabled' do
    Rib::SqueezeHistory.disable do
      times = @input.size
      input = @input.dup
      stub(@shell).get_input{ (@shell.history << "'#{@input.shift}'").last }
      stub(@shell).print_result{}.with_any_args
      times.times{ @shell.loop_once }
      @shell.history.to_a.should.eq input.map{ |i| "'#{i}'" }
    end
  end
end

describe Rib::SqueezeHistory do
  paste :rib

  before do
    @history = "/tmp/test_rib_#{rand}"
    @shell   = Rib::Shell.new(:history_file => @history).before_loop
    @input   = %w[foo bar bar foo bar]
    @shell.history.clear
  end

  after do
    FileUtils.rm_f(@history)
  end

  test_for Rib::History, Rib::SqueezeHistory do
    paste :squeeze_history
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rib-1.2.6 test/core/test_squeeze_history.rb