test/unit/bio/util/restriction_enzyme/test_analysis.rb in bio-1.2.1 vs test/unit/bio/util/restriction_enzyme/test_analysis.rb in bio-1.3.0

- old
+ new

@@ -3,22 +3,22 @@ # # Author:: Trevor Wennblom <mailto:trevor@corevx.com> # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com) # License:: The Ruby License # -# $Id: test_analysis.rb,v 1.13 2007/07/16 19:29:32 k Exp $ +# $Id:$ # require 'pathname' libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 5, 'lib')).cleanpath.to_s $:.unshift(libpath) unless $:.include?(libpath) require 'test/unit' require 'bio/util/restriction_enzyme/analysis' require 'bio/sequence' -module Bio #:nodoc: +module Bio; module TestRestrictionEnzyme #:nodoc: class TestAnalysis < Test::Unit::TestCase #:nodoc: def setup @enz = Bio::RestrictionEnzyme @@ -241,6 +241,6 @@ end end -end +end; end