[BioRuby-cvs] bioruby/test/unit/bio test_shell.rb,NONE,1.1
Mitsuteru C. Nakao
nakao at pub.open-bio.org
Thu Oct 27 11:10:50 EDT 2005
Update of /home/repository/bioruby/bioruby/test/unit/bio
In directory pub.open-bio.org:/tmp/cvs-serv8884/test/unit/bio
Added Files:
test_shell.rb
Log Message:
* Initially imported unit test for Bio::Shell.
--- NEW FILE: test_shell.rb ---
#
# test/unit/bio/test_shell.rb - Unit test for Bio::Shell
#
# Copyright (C) 2005 Mitsuteru Nakao <n at bioruby.org>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id: test_shell.rb,v 1.1 2005/10/27 15:10:48 nakao Exp $
#
require 'pathname'
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 3, 'lib')).cleanpath.to_s
$:.unshift(libpath) unless $:.include?(libpath)
require 'test/unit'
require 'bio/shell'
module Bio
class TestShell < Test::Unit::TestCase
def test_const_bioruby_config
assert_equal($bioruby_config, {})
end
def test_const_bioruby_cache
assert_equal($bioruby_cache, {})
end
end
end
More information about the bioruby-cvs
mailing list