aboutsummaryrefslogtreecommitdiff
path: root/test/lib/NavigationTest.rb
diff options
context:
space:
mode:
authorPjotr Prins2016-06-17 05:55:02 +0000
committerPjotr Prins2016-06-17 05:55:02 +0000
commit6be8ae8ba741c4822470f752f60d85fe54bd90f9 (patch)
tree18aebad3db0559af3428831e57a45560d69af72e /test/lib/NavigationTest.rb
parentd90dc3748557d1d6fbaa59f71fe676b8a7c393ca (diff)
downloadgenenetwork2-6be8ae8ba741c4822470f752f60d85fe54bd90f9.tar.gz
Testing: getting tests to run quietly
Diffstat (limited to 'test/lib/NavigationTest.rb')
-rw-r--r--test/lib/NavigationTest.rb17
1 files changed, 8 insertions, 9 deletions
diff --git a/test/lib/NavigationTest.rb b/test/lib/NavigationTest.rb
index 26080d28..676ee90c 100644
--- a/test/lib/NavigationTest.rb
+++ b/test/lib/NavigationTest.rb
@@ -1,5 +1,6 @@
# In these tests we navigate from the main page to a specific trait then hit the different mapping tool buttons (In this case pylMM and r/qtl) followed by computing the results (marker regressions).
+
class NavigationTest
end
@@ -11,6 +12,7 @@ describe NavigationTest do
describe NavigationTest do
it "pyLMM mapping tool selection" do
+ break if $options[:skip_broken]
page = @agent.get($host+'/show_trait?trait_id=1435395_s_at&dataset=HC_M2_0606_P')
#Navigates to http://localhost:5003/show_trait?trait_id=1435395_s_at&dataset=HC_M2_0606_P and clicks respective buttons.
link = page.link_with(text: 'pyLMM')
@@ -20,15 +22,14 @@ describe NavigationTest do
page = link.click
puts page.uri
probe_link.uri.to_s.must_equal "/marker_regression"
-
-
- end
- end
+ end
+ end
end
describe NavigationTest do
it "R/qtl mapping tool selection" do
+ break if $options[:skip_broken]
page = @agent.get($host+'/show_trait?trait_id=1435395_s_at&dataset=HC_M2_0606_P')
link = page.link_with(text: 'R/qtl')
page = link.click
@@ -37,10 +38,8 @@ describe NavigationTest do
link = page.link_with(text: 'Compute')
page = link.click
puts page.uri
- probe_link.uri.to_s.must_equal "/marker_regression"
-
-
- end
- end
+ probe_link.uri.to_s.must_equal "/marker_regression"
+ end
+end