]> git.donarmstrong.com Git - biopieces.git/commitdiff
changed seq_type from string to symbols in ruby
authormartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Wed, 1 Jul 2009 10:17:11 +0000 (10:17 +0000)
committermartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Wed, 1 Jul 2009 10:17:11 +0000 (10:17 +0000)
git-svn-id: http://biopieces.googlecode.com/svn/trunk@551 74ccb610-7750-0410-82ae-013aeee3265d

code_ruby/Maasha/test/test_seq.rb

index 7ec47ecc9ed3cbbd531d6787e1d2c2c659eef8c7..7e8c89dd713085a3ac1080d7b02b55d25ff4e274 100755 (executable)
@@ -7,14 +7,14 @@ class TestSeq < Test::Unit::TestCase
 
        # Testing Seq#initialize
 
-       # test marked for deletion - too simple and informative
+       # test marked for deletion - too simple and not informative
        def test_Seq_initialize_with_0_args
                s = Seq.new
                assert_equal( "", s.seq ) 
                assert_equal( nil, s.seq_type ) 
        end
 
-       # test marked for deletion - too simple and informative
+       # test marked for deletion - too simple and not informative
        def test_Seq_initialize_with_1_args
                s = Seq.new( "ATCG" )
                assert_equal( "ATCG", s.seq ) 
@@ -244,14 +244,14 @@ class TestSeq < Test::Unit::TestCase
 
        # Testing Seq::AA#initialize
 
-       # test marked for deletion - too simple and informative
+       # test marked for deletion - too simple and not informative
        def test_Seq_AA_initialize_with_0_args
                s = Seq::AA.new
                assert_equal( "", s.seq )
                assert_equal( :AA, s.seq_type )
        end
 
-       # test marked for deletion - too simple and informative
+       # test marked for deletion - too simple and not informative
        def test_Seq_AA_initialize_with_1_args
                s = Seq::AA.new( "SEQ" )
                assert_equal( "SEQ", s.seq )