]> git.donarmstrong.com Git - biopieces.git/blobdiff - code_ruby/test/maasha/test_fasta.rb
got rid of type in filesys.rb
[biopieces.git] / code_ruby / test / maasha / test_fasta.rb
index a8ba01c492fe1e603e0e6eb97468d36368fced18..e52440d0c0f6cbb9c16cc9aa031bf5067145fad7 100755 (executable)
@@ -46,11 +46,6 @@ class FastaTest < Test::Unit::TestCase
     assert_equal("ATCG", fasta.get_entry.seq)
   end
 
-  def test_Fasta_get_entry_obtains_the_correct_type
-    fasta = Fasta.new(StringIO.new(">test\nATCG\n"), 'DNA')
-    assert_equal("dna", fasta.get_entry.type)
-  end
-
   def test_Fasta_get_entry_rstrips_whitespace_from_seq_name
     fasta = Fasta.new(StringIO.new(">test\n\r\t ATCG\n"))
     assert_equal("test", fasta.get_entry.seq_name)