Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/bin/rubymine')
-rwxr-xr-xqa/bin/rubymine9
1 files changed, 9 insertions, 0 deletions
diff --git a/qa/bin/rubymine b/qa/bin/rubymine
new file mode 100755
index 00000000000..0be0cf0ec33
--- /dev/null
+++ b/qa/bin/rubymine
@@ -0,0 +1,9 @@
+#!/usr/bin/env ruby
+
+require_relative '../qa'
+
+ARGV.unshift('Test::Instance::All', ENV['GITLAB_URL'], '--')
+
+QA::Scenario
+ .const_get(ARGV.shift)
+ .launch!(ARGV)