Sha256: 39d691d39c2d0b341e59f87acf4ec072311ae0ae9eb744a1dd97f1d4ade57f42
Contents?: true
Size: 590 Bytes
Versions: 20
Compression:
Stored size: 590 Bytes
Contents
describe Commander::HelpFormatter do before :each do mock_terminal end it "should display global help using --help switch" do run('--help').should == "Implement global help here\n" end it "should display global help using help command" do run('help').should == "Implement global help here\n" end it "should display command help" do run('help', 'test').should == "Implement help for test here\n" end it "should display command help using --help switch" do run('--help', 'test').should == "Implement help for test here\n" end end
Version data entries
20 entries across 20 versions & 4 rubygems