Sha256: 2c013d78089e544c0a6825ab1f2fe5d97e50518b03c8c0ff38b2a9071a1a1a98

Contents?: true

Size: 1.09 KB

Versions: 60

Compression:

Stored size: 1.09 KB

Contents

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

describe Redcar::Command::History do
  class HistoryTestCommand1 < Redcar::Command
    def execute
    end
  end
  
  class HistoryTestCommand2 < Redcar::Command
    norecord
    
    def execute
    end
  end
  
  before do
    @history = Redcar::Command::History.new
  end
  
  it "should record executed commands" do
    command = HistoryTestCommand1.new
    @history.record(command)
    @history.length.should == 1
  end
  
  it "should not record norecord commands" do
    command = HistoryTestCommand2.new
    @history.record(command)
    @history.length.should == 0
  end
  
  it "should have a maximum length" do
    @history.max = 5
    10.times { @history.record(HistoryTestCommand1.new) }
    @history.length.should == 5
  end  
  
  it "should record and replace last if required" do
    @history.record(HistoryTestCommand1.new)
    @history.length.should == 1
    new_command = HistoryTestCommand1.new
    @history.record_and_replace(new_command)
    @history.length.should == 1
    @history.last.should == new_command
  end
end



Version data entries

60 entries across 60 versions & 2 rubygems

Version Path
redcar-0.3.9 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.9.0dev plugins/application/spec/application/command/history_spec.rb
redcar-0.3.8.4 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.8.3 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.8.2 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.8.1 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.8 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.7.1 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.7 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.6 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.5 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.4.3 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.4.2 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.4.1 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.4 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.3 plugins/application/spec/application/command/history_spec.rb
redcar-0.3.2dev plugins/application/spec/application/command/history_spec.rb
redcar-0.3.1dev plugins/application/spec/application/command/history_spec.rb
redcar-0.3.0dev plugins/application/spec/application/command/history_spec.rb
redcar-0.2.9dev plugins/application/spec/application/command/history_spec.rb