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
Kyrylo Silin e61354693f Add .rspec and require 'helper' from there
Just discovered this nice feature of RSpec where it can load all files for
us. Works with `bundle exec rake` and `bundle exec rspec spec/file_spec.rb`,
which covers all use cases.
2018-11-18 14:04:44 +08:00

54 lines
1.6 KiB
Ruby

describe "help" do
before do
@oldset = Pry.config.commands
@set = Pry.config.commands = Pry::CommandSet.new do
import Pry::Commands
end
end
after do
Pry.config.commands = @oldset
end
it 'should display help for a specific command' do
expect(pry_eval('help ls')).to match(/Usage: ls/)
end
it 'should display help for a regex command with a "listing"' do
@set.command(/bar(.*)/, "Test listing", listing: "foo") { ; }
expect(pry_eval('help foo')).to match(/Test listing/)
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') {}
expect(pry_eval('help "cmd with spaces"')).to match(/desc of a cmd with spaces/)
end
it 'should display help for all commands with a description' do
@set.command(/bar(.*)/, "Test listing", listing: "foo") { ; }
@set.command('b', 'description for b', listing: 'foo') {}
@set.command('c') {}
@set.command('d', '') {}
output = pry_eval('help')
expect(output).to match(/Test listing/)
expect(output).to match(/Description for b/)
expect(output).to match(/No description/)
end
it "should sort the output of the 'help' command" do
@set.command('faa', 'Fooerizes') {}
@set.command('gaa', 'Gooerizes') {}
@set.command('maa', 'Mooerizes') {}
@set.command('baa', 'Booerizes') {}
doc = pry_eval('help')
order = [doc.index("baa"),
doc.index("faa"),
doc.index("gaa"),
doc.index("maa")]
expect(order).to eq(order.sort)
end
end