Sha256: 7872b0cc75064989653988ebfdc57d0c098f2732f6c395d62ad192a81d2d5f1a
Contents?: true
Size: 930 Bytes
Versions: 1
Compression:
Stored size: 930 Bytes
Contents
# -*- encoding: utf-8 -*- require 'minitest/autorun' require 'webgen/cli' class TestCLICommandParser < Minitest::Test class SampleCommand < CmdParse::Command def initialize super('sample', takes_commands: false) end end def setup @cli = Webgen::CLI::CommandParser.new end def test_initialize assert_equal(Logger::INFO, @cli.log_level) assert_equal(nil, @cli.directory) end def test_website assert_equal(Dir.pwd, @cli.website.directory) assert_equal(@cli, @cli.website.ext.cli) end def test_parse @cli.website.ext.cli.add_command(SampleCommand.new) out, err = capture_io do begin @cli.parse(['help']) assert_equal(Dir.pwd, @cli.directory) rescue SystemExit end end assert_match(/Global Options:/, out) assert_match(/create.*generate.*help.*install.*sample.*.*show.*config.*deps.*extensions.*version/m, out) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
webgen-1.4.0 | test/webgen/test_cli.rb |