File: test_bin.rb

package info (click to toggle)
ruby-crb-blast 0.6.9-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: ruby: 820; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 280 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env  ruby

require 'helper'

class TestBinary < Test::Unit::TestCase

  context 'crb-blast' do

    should 'run binary' do
      cmd = "bin/crb-blast --help"
      runner = CRB_Blast::Cmd.new(cmd)
      runner.run
      assert runner.status.success?
    end

  end
end