]> git.donarmstrong.com Git - biopieces.git/blobdiff - code_ruby/test/maasha/roche/test_mids.rb
added roche mid module
[biopieces.git] / code_ruby / test / maasha / roche / test_mids.rb
diff --git a/code_ruby/test/maasha/roche/test_mids.rb b/code_ruby/test/maasha/roche/test_mids.rb
new file mode 100755 (executable)
index 0000000..ad8c722
--- /dev/null
@@ -0,0 +1,42 @@
+#!/usr/bin/env ruby
+$:.unshift File.join(File.dirname(__FILE__), '..', '..')
+
+# Copyright (C) 2013 Martin A. Hansen.
+
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+# http://www.gnu.org/copyleft/gpl.html
+
+# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
+
+# This software is part of the Biopieces framework (www.biopieces.org).
+
+# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
+
+require 'test/unit'
+require 'test/helper'
+require 'maasha/roche'
+
+class RocheTest < Test::Unit::TestCase
+  test "Roche::GSMID_HASH returns correctly" do
+    assert_equal("MID1", Roche::GSMID_HASH[:ACGAGTGCGT])
+    assert_equal(nil,    Roche::GSMID_HASH[:FOO])
+  end
+
+  test "Roche::RLMID_HASH returns correctly" do
+    assert_equal("RL1", Roche::RLMID_HASH[:ACACGACGACT])
+    assert_equal(nil,   Roche::RLMID_HASH[:FOO])
+  end
+end