1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# frozen_string_literal: true
require 'spec_helper'
describe Commander::HelpFormatter::Terminal do
include Commander::Methods
before :each do
mock_terminal
end
describe 'global help' do
before :each do
new_command_runner 'help' do
command :'install gem' do |c|
c.syntax = 'foo install gem [options]'
c.summary = 'Install some gem'
end
end.run!
@global_help = @output.string
end
describe 'should display' do
it 'the command name' do
expect(@global_help).to include('install gem')
end
it 'the summary' do
expect(@global_help).to include('Install some gem')
end
end
end
describe 'command help' do
before :each do
new_command_runner 'help', 'install', 'gem' do
command :'install gem' do |c|
c.syntax = 'foo install gem [options]'
c.summary = 'Install some gem'
c.description = 'Install some gem, blah blah blah'
c.example 'one', 'two'
c.example 'three', 'four'
end
end.run!
@command_help = @output.string
end
describe 'should display' do
it 'the command name' do
expect(@command_help).to include('install gem')
end
it 'the description' do
expect(@command_help).to include('Install some gem, blah blah blah')
end
it 'all examples' do
expect(@command_help).to include('# one')
expect(@command_help).to include('two')
expect(@command_help).to include('# three')
expect(@command_help).to include('four')
end
it 'the syntax' do
expect(@command_help).to include('foo install gem [options]')
end
end
end
end
|