Sha256: 0ef34a6082a0eec0df1ecd8b333bf679dd9503d6655cd6bdcc14da6c43b5c711
Contents?: true
Size: 539 Bytes
Versions: 17
Compression:
Stored size: 539 Bytes
Contents
When /^I open a "([^"]*)" repl$/ do |repl| Redcar.const_get(repl.camelize).const_get("Open" + repl.camelize + "REPL").new.run end When /^I open a new repl$/ do Redcar::REPL::OpenFakeREPL.new.run end Then /^the REPL output should be "([^"]*)"$/ do |output| current_tab.edit_view.document.mirror.last_output.should == output end Then /^the current command should be "([^"]*)"$/ do |cmd| current_tab.current_command.should == cmd end Then /^the current command should be blank$/ do current_tab.current_command.should == nil end
Version data entries
17 entries across 17 versions & 2 rubygems