summaryrefslogtreecommitdiff
path: root/test/descriptor.rb
blob: 1a5776673058e5224808ad4ea9dde2940ce2b58c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative "setup.rb"

$host = "https://mr-test.in-silico.ch"


class DescriptorTest < MiniTest::Test

  def test_00_get_descriptors
    res = RestClientWrapper.get File.join($host, "algorithm/descriptor"), {}, {:accept => "text/plain"}
    assert_equal res.code, 200
    assert res.include?("Joelib.KierShape1: no description available\nJoelib.KierShape2: no description available")
  end


end