Add fake test pipeline code

Change-Id: Ifbc442f4b867536bd76e8b6a92bdefc7754a4d4c
diff --git a/fake-test-pipeline.groovy b/fake-test-pipeline.groovy
new file mode 100644
index 0000000..947b170
--- /dev/null
+++ b/fake-test-pipeline.groovy
@@ -0,0 +1,7 @@
+def gerrit = new com.mirantis.mk.Gerrit()
+def ssh = new com.mirantis.mk.Ssh()
+node("python") {
+    ssh.prepareSshAgentKey(CREDENTIALS_ID)
+    ssh.ensureKnownHosts(GERRIT_HOST)
+    ssh.agentSh(String.format("ssh -p 29418 %s@%s gerrit review --verified +1 %s,%s", GERRIT_USERNAME, GERRIT_HOST, GERRIT_CHANGE_NUMBER, GERRIT_PATCHSET_NUMBER))
+}