1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/spec/commands/help_spec.rb

57 lines
1.6 KiB
Ruby
Raw Normal View History

require_relative '../helper'
2012-02-22 23:56:25 -08:00
describe "help" do
2012-02-22 23:56:25 -08:00
before do
@oldset = Pry.config.commands
@set = Pry.config.commands = Pry::CommandSet.new do
import Pry::Commands
2012-02-22 23:56:25 -08:00
end
end
after do
Pry.config.commands = @oldset
end
it 'should display help for a specific command' do
2015-03-10 22:49:29 +02:00
expect(pry_eval('help ls')).to match(/Usage: ls/)
2012-02-22 23:56:25 -08:00
end
it 'should display help for a regex command with a "listing"' do
2015-01-23 10:30:41 +01:00
@set.command(/bar(.*)/, "Test listing", :listing => "foo") do; end
2015-03-10 22:49:29 +02:00
expect(pry_eval('help foo')).to match(/Test listing/)
2012-02-22 23:56:25 -08:00
end
it 'should display help for a command with a spaces in its name' do
@set.command "cmd with spaces", "desc of a cmd with spaces" do; end
2015-03-10 22:49:29 +02:00
expect(pry_eval('help "cmd with spaces"')).to match(/desc of a cmd with spaces/)
2012-02-22 23:56:25 -08:00
end
it 'should display help for all commands with a description' do
2015-01-23 10:30:41 +01:00
@set.command(/bar(.*)/, "Test listing", :listing => "foo") do; end
2012-02-22 23:56:25 -08:00
@set.command "b", "description for b", :listing => "foo" do; end
@set.command "c" do;end
@set.command "d", "" do;end
output = pry_eval('help')
2015-03-10 22:49:29 +02:00
expect(output).to match(/Test listing/)
expect(output).to match(/Description for b/)
expect(output).to match(/No description/)
2012-02-22 23:56:25 -08:00
end
it "should sort the output of the 'help' command" do
@set.command 'faa', "Fooerizes" do; end
@set.command 'gaa', "Gooerizes" do; end
@set.command 'maa', "Mooerizes" do; end
@set.command 'baa', "Booerizes" do; end
2012-02-22 23:56:25 -08:00
doc = pry_eval('help')
2012-02-22 23:56:25 -08:00
order = [doc.index("baa"),
doc.index("faa"),
doc.index("gaa"),
doc.index("maa")]
2012-02-22 23:56:25 -08:00
2015-03-10 22:49:29 +02:00
expect(order).to eq(order.sort)
2012-02-22 23:56:25 -08:00
end
end