]> git.donarmstrong.com Git - biopieces.git/blobdiff - code_ruby/test/maasha/test_seq.rb
added new Biopiece merge_pair_seq
[biopieces.git] / code_ruby / test / maasha / test_seq.rb
index eab90cb758f1a95a4d1f71a968f5681f63728da7..b3bdd790baa16546e74d655e79dd1ec06f3d57eb 100755 (executable)
@@ -373,6 +373,18 @@ class TestSeq < Test::Unit::TestCase
     assert_equal("HHHHIIII", @entry.qual)
   end
 
+  test "#[] returns correctly" do
+    @entry.seq  = "atcg"
+    @entry.type = :dna
+    @entry.qual = "FGHI"
+
+    fail
+  end
+
+  test "[]= returns correctly" do
+    fail
+  end
+
   test "#subseq with start < 0 raises" do
     @entry.seq = "ATCG"
     assert_raise(SeqError) { @entry.subseq(-1, 1) }