[BioRuby-cvs] bioruby/test/unit/bio/util/restriction_enzyme/double_stranded test_aligned_strands.rb, 1.1, 1.2 test_cut_location_pair.rb, 1.1, 1.2 test_cut_location_pair_in_enzyme_notation.rb, 1.1, 1.2 test_cut_locations.rb, 1.1, 1.2 test_cut_locations_in_enzyme_notation.rb, 1.1, 1.2
Trevor Wennblom
trevor at dev.open-bio.org
Sun Dec 31 18:46:17 UTC 2006
- Previous message: [BioRuby-cvs] bioruby/test/unit/bio/util/restriction_enzyme/single_strand test_cut_locations_in_enzyme_notation.rb, 1.1, 1.2
- Next message: [BioRuby-cvs] bioruby/test/unit/bio/util/restriction_enzyme test_analysis.rb, 1.3, 1.4 test_double_stranded.rb, 1.1, 1.2 test_integer.rb, 1.1, 1.2 test_single_strand.rb, 1.1, 1.2 test_single_strand_complement.rb, 1.1, 1.2 test_string_formatting.rb, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/repository/bioruby/bioruby/test/unit/bio/util/restriction_enzyme/double_stranded
In directory dev.open-bio.org:/tmp/cvs-serv31881/util/restriction_enzyme/double_stranded
Modified Files:
test_aligned_strands.rb test_cut_location_pair.rb
test_cut_location_pair_in_enzyme_notation.rb
test_cut_locations.rb test_cut_locations_in_enzyme_notation.rb
Log Message:
Relicense of test suites.
Index: test_cut_locations_in_enzyme_notation.rb
===================================================================
RCS file: /home/repository/bioruby/bioruby/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_cut_locations_in_enzyme_notation.rb 1 Feb 2006 07:38:12 -0000 1.1
--- test_cut_locations_in_enzyme_notation.rb 31 Dec 2006 18:46:15 -0000 1.2
***************
*** 1,2 ****
--- 1,12 ----
+ #
+ # test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb - Unit test for Bio::RestrictionEnzyme::DoubleStranded::CutLocationsInEnzymeNotation
+ #
+ # Author:: Trevor Wennblom <mailto:trevor at corevx.com>
+ # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
+ # License:: Distributes under the same terms as Ruby
+ #
+ # $Id$
+ #
+
require 'pathname'
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cleanpath.to_s
***************
*** 6,12 ****
require 'bio/util/restriction_enzyme/double_stranded/cut_locations_in_enzyme_notation'
! module Bio
! class TestDoubleStrandedCutLocationsInEnzymeNotation < Test::Unit::TestCase
def setup
--- 16,22 ----
require 'bio/util/restriction_enzyme/double_stranded/cut_locations_in_enzyme_notation'
! module Bio #:nodoc:
! class TestDoubleStrandedCutLocationsInEnzymeNotation < Test::Unit::TestCase #:nodoc:
def setup
Index: test_aligned_strands.rb
===================================================================
RCS file: /home/repository/bioruby/bioruby/test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_aligned_strands.rb 1 Feb 2006 07:38:12 -0000 1.1
--- test_aligned_strands.rb 31 Dec 2006 18:46:15 -0000 1.2
***************
*** 1,2 ****
--- 1,12 ----
+ #
+ # test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb - Unit test for Bio::RestrictionEnzyme::DoubleStranded::AlignedStrands
+ #
+ # Author:: Trevor Wennblom <mailto:trevor at corevx.com>
+ # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
+ # License:: Distributes under the same terms as Ruby
+ #
+ # $Id$
+ #
+
require 'pathname'
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cleanpath.to_s
***************
*** 7,13 ****
require 'bio/util/restriction_enzyme/double_stranded'
! module Bio
! class TestDoubleStrandedAlignedStrands < Test::Unit::TestCase
def setup
--- 17,23 ----
require 'bio/util/restriction_enzyme/double_stranded'
! module Bio #:nodoc:
! class TestDoubleStrandedAlignedStrands < Test::Unit::TestCase #:nodoc:
def setup
Index: test_cut_locations.rb
===================================================================
RCS file: /home/repository/bioruby/bioruby/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_cut_locations.rb 1 Feb 2006 07:38:12 -0000 1.1
--- test_cut_locations.rb 31 Dec 2006 18:46:15 -0000 1.2
***************
*** 1,2 ****
--- 1,12 ----
+ #
+ # test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb - Unit test for Bio::RestrictionEnzyme::DoubleStranded::CutLocations
+ #
+ # Author:: Trevor Wennblom <mailto:trevor at corevx.com>
+ # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
+ # License:: Distributes under the same terms as Ruby
+ #
+ # $Id$
+ #
+
require 'pathname'
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cleanpath.to_s
***************
*** 6,12 ****
require 'bio/util/restriction_enzyme/double_stranded/cut_locations'
! module Bio
! class TestDoubleStrandedCutLocations < Test::Unit::TestCase
def setup
--- 16,22 ----
require 'bio/util/restriction_enzyme/double_stranded/cut_locations'
! module Bio #:nodoc:
! class TestDoubleStrandedCutLocations < Test::Unit::TestCase #:nodoc:
def setup
Index: test_cut_location_pair_in_enzyme_notation.rb
===================================================================
RCS file: /home/repository/bioruby/bioruby/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_cut_location_pair_in_enzyme_notation.rb 1 Feb 2006 07:38:12 -0000 1.1
--- test_cut_location_pair_in_enzyme_notation.rb 31 Dec 2006 18:46:15 -0000 1.2
***************
*** 1,2 ****
--- 1,12 ----
+ #
+ # test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb - Unit test for Bio::RestrictionEnzyme::DoubleStranded::CutLocationPairInEnzymeNotation
+ #
+ # Author:: Trevor Wennblom <mailto:trevor at corevx.com>
+ # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
+ # License:: Distributes under the same terms as Ruby
+ #
+ # $Id$
+ #
+
require 'pathname'
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cleanpath.to_s
***************
*** 6,12 ****
require 'bio/util/restriction_enzyme/double_stranded/cut_location_pair_in_enzyme_notation'
! module Bio
! class TestDoubleStrandedCutLocationPairInEnzymeNotation < Test::Unit::TestCase
def setup
--- 16,22 ----
require 'bio/util/restriction_enzyme/double_stranded/cut_location_pair_in_enzyme_notation'
! module Bio #:nodoc:
! class TestDoubleStrandedCutLocationPairInEnzymeNotation < Test::Unit::TestCase #:nodoc:
def setup
Index: test_cut_location_pair.rb
===================================================================
RCS file: /home/repository/bioruby/bioruby/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_cut_location_pair.rb 1 Feb 2006 07:38:12 -0000 1.1
--- test_cut_location_pair.rb 31 Dec 2006 18:46:15 -0000 1.2
***************
*** 1,2 ****
--- 1,12 ----
+ #
+ # test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb - Unit test for Bio::RestrictionEnzyme::DoubleStranded::CutLocationPair
+ #
+ # Author:: Trevor Wennblom <mailto:trevor at corevx.com>
+ # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com)
+ # License:: Distributes under the same terms as Ruby
+ #
+ # $Id$
+ #
+
require 'pathname'
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 6, 'lib')).cleanpath.to_s
***************
*** 6,12 ****
require 'bio/util/restriction_enzyme/double_stranded/cut_location_pair'
! module Bio
! class TestDoubleStrandedCutLocationPair < Test::Unit::TestCase
def setup
--- 16,22 ----
require 'bio/util/restriction_enzyme/double_stranded/cut_location_pair'
! module Bio #:nodoc:
! class TestDoubleStrandedCutLocationPair < Test::Unit::TestCase #:nodoc:
def setup
- Previous message: [BioRuby-cvs] bioruby/test/unit/bio/util/restriction_enzyme/single_strand test_cut_locations_in_enzyme_notation.rb, 1.1, 1.2
- Next message: [BioRuby-cvs] bioruby/test/unit/bio/util/restriction_enzyme test_analysis.rb, 1.3, 1.4 test_double_stranded.rb, 1.1, 1.2 test_integer.rb, 1.1, 1.2 test_single_strand.rb, 1.1, 1.2 test_single_strand_complement.rb, 1.1, 1.2 test_string_formatting.rb, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the bioruby-cvs
mailing list