Sha256: 57a19935010147b937e38e14387d10175458e10e968f5f03a750dbccc0695f52

Contents?: true

Size: 1.74 KB

Versions: 15

Compression:

Stored size: 1.74 KB

Contents

#
# test/unit/bio/appl/sosui/test_report.rb - Unit test for Bio::SOSUI::Report
#
# Copyright::   Copyright (C) 2005 Mitsuteru Nakao <n@bioruby.org>
# License::     The Ruby License
#
#  $Id:$
#

# loading helper routine for testing bioruby
require 'pathname'
load Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 4,
                            'bioruby_test_helper.rb')).cleanpath.to_s

# libraries needed for the tests
require 'test/unit'
require 'bio/appl/sosui/report'


module Bio

  test_data = Pathname.new(File.join(BioRubyTestDataPath, 'SOSUI')).cleanpath.to_s
  SOSUIReport = File.open(File.join(test_data, 'sample.report')).read


  class TestSOSUIReportConst  < Test::Unit::TestCase

    def test_delimiter
      assert_equal("\n>", Bio::SOSUI::Report::DELIMITER)
    end

    def test_rs
      assert_equal("\n>", Bio::SOSUI::Report::RS)
    end

  end


  class TestSOSUIReport < Test::Unit::TestCase

    def setup
      @obj = Bio::SOSUI::Report.new(SOSUIReport)
    end

    def test_entry_id
      assert_equal('Q9HC19', @obj.entry_id)
    end

    def test_prediction
      assert_equal('MEMBRANE PROTEIN', @obj.prediction)
    end

    def test_tmhs
      assert_equal(Array, @obj.tmhs.class)
      assert_equal(Bio::SOSUI::Report::TMH, @obj.tmhs[0].class)
    end

    def test_tmh
      assert_equal(7, @obj.tmhs.size)
    end

  end # class TestSOSUIReport

  class TestSOSUITMH < Test::Unit::TestCase
    def setup
      @obj = Bio::SOSUI::Report.new(SOSUIReport).tmhs.first
    end

    def test_range
      assert_equal(31..53, @obj.range)
    end

    def test_grade
      assert_equal('SECONDARY', @obj.grade)
    end
    
    def test_sequence
      assert_equal('HIRMTFLRKVYSILSLQVLLTTV', @obj.sequence)
    end

  end # class TestSOSUITMH
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
bio-2.0.5 test/unit/bio/appl/sosui/test_report.rb
bio-2.0.4 test/unit/bio/appl/sosui/test_report.rb
bio-2.0.3 test/unit/bio/appl/sosui/test_report.rb
bio-2.0.2 test/unit/bio/appl/sosui/test_report.rb
bio-2.0.1 test/unit/bio/appl/sosui/test_report.rb
bio-2.0.0 test/unit/bio/appl/sosui/test_report.rb
bio-1.6.0.pre.20181210 test/unit/bio/appl/sosui/test_report.rb
bio-1.5.2 test/unit/bio/appl/sosui/test_report.rb
bio-1.5.1 test/unit/bio/appl/sosui/test_report.rb
bio-1.5.0 test/unit/bio/appl/sosui/test_report.rb
bio-1.4.3.0001 test/unit/bio/appl/sosui/test_report.rb
bio-1.4.3 test/unit/bio/appl/sosui/test_report.rb
bio-1.4.2 test/unit/bio/appl/sosui/test_report.rb
bio-1.4.1 test/unit/bio/appl/sosui/test_report.rb
bio-1.4.0 test/unit/bio/appl/sosui/test_report.rb