Sha256: de1ec638552325e4b503674da8b6dd7cd270add1506a9d2737160e9ca6450704

Contents?: true

Size: 536 Bytes

Versions: 15

Compression:

Stored size: 536 Bytes

Contents

# -*- coding: utf-8 -*-
#
# @file 
# @brief
# @author ongaeshi
# @date   2011/03/08

require 'rubygems'
require 'test/unit'
require 'milkode/cdstk/cli_cdstk'
require 'milkode/cdview/cli_cdview'

class TestBinExec < Test::Unit::TestCase
  def test_bin_exec
    io = StringIO.new

    Milkode::CLI_Cdstk.execute(io)
    
    Milkode::CLI_Cdview.execute(io)

    # 一定時間だけ起動するような仕組みは無いものか
    # Milkode::CLI_Cdweb.execute(io, "--no-browser -p 5555".split)
    
    # puts io.string
  end
end




Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
milkode-0.2.9 test/test_bin_exec.rb
milkode-0.2.4 test/test_bin_exec.rb
milkode-0.2.2 test/test_bin_exec.rb
milkode-0.2.1 test/test_bin_exec.rb
milkode-0.2.0 test/test_bin_exec.rb
milkode-0.1.9 test/test_bin_exec.rb
milkode-0.1.8 test/test_bin_exec.rb
milkode-0.1.7 test/test_bin_exec.rb
milkode-0.1.6 test/test_bin_exec.rb
milkode-0.1.5 test/test_bin_exec.rb
milkode-0.1.4 test/test_bin_exec.rb
milkode-0.1.3 test/test_bin_exec.rb
milkode-0.1.2 test/test_bin_exec.rb
milkode-0.1.1 test/test_bin_exec.rb
milkode-0.1.0 test/test_bin_exec.rb