]> git.donarmstrong.com Git - biopieces.git/blobdiff - code_ruby/test/maasha/seq/test_homopolymer.rb
changed Seq.new argument to hash
[biopieces.git] / code_ruby / test / maasha / seq / test_homopolymer.rb
index a574fd8c5041f01103e9aefeb3a33ca8c3b3c6f4..cae533ee36dce50a609e5a4abfdbf2503f6c8c03 100755 (executable)
@@ -31,9 +31,9 @@ require 'maasha/seq'
 
 class HomopolymerTest < Test::Unit::TestCase
   def setup
-    #                         0         1
-    #                         01234567890123456789
-    @entry = Seq.new("test", "tacgatgctagcatgcacgg")
+    #                      0         1
+    #                      01234567890123456789
+    @entry = Seq.new(seq: "tacgatgctagcatgcacgg")
     @entry.extend(Homopolymer)
   end