diff options
author | Pjotr Prins | 2016-09-26 14:26:47 +0000 |
---|---|---|
committer | Pjotr Prins | 2016-09-26 14:26:47 +0000 |
commit | 2d04ad9552f5b3f0551c31797f8fa714e3af4c7a (patch) | |
tree | 5a48865fa210d6d51d47b929ac38dbb2e4e168b6 /test/lib | |
parent | fb754ded72f3b2303277f86b75b9fae8d352c4cf (diff) | |
download | genenetwork2-2d04ad9552f5b3f0551c31797f8fa714e3af4c7a.tar.gz |
Test: added pylmm test
Diffstat (limited to 'test/lib')
-rw-r--r-- | test/lib/mapping.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/lib/mapping.rb b/test/lib/mapping.rb index 47c4875b..1b52d797 100644 --- a/test/lib/mapping.rb +++ b/test/lib/mapping.rb @@ -12,6 +12,21 @@ describe MappingTest do end describe MappingTest do + it "pylmm mapping tool selection" do + url = $host+'/marker_regression' + + json = JSON::load(File.read('test/data/input/mapping/1435395_s_at_HC_M2_0606_P.json')) + json["method"] = "pylmm" + # p json + page = @agent.post(URI.encode(url), json) + # Unpacking the page is slow - but the run is enough as a test + # form = page.forms[1] + # form = page.forms_with("marker_regression")[0] + # form.fields.select { |fld| fld.name == 'corr_dataset' }.first.value.must_equal 'HC_M2_0606_P' + end + end + + describe MappingTest do it "R/qtl mapping tool selection" do url = $host+'/marker_regression' # ?trait_id=1435395_s_at&dataset=HC_M2_0606_P' |