From 751c59e8b34c86ed89fe61ec05e61c23292ad396 Mon Sep 17 00:00:00 2001 From: James Booth Date: Wed, 11 Jun 2014 21:42:19 +0100 Subject: [PATCH] Moved test plugins to folder, removed connect plugin --- connect.lua | 10 ---------- RubyTest.rb => tests/RubyTest.rb | 0 luatest.lua => tests/luatest.lua | 0 python-test.py => tests/python-test.py | 0 threaded-example.py => tests/python-thread.py | 0 {test-c-plugin => tests/test-c-plugin}/Makefile | 0 {test-c-plugin => tests/test-c-plugin}/test-c-plugin.c | 0 7 files changed, 10 deletions(-) delete mode 100644 connect.lua rename RubyTest.rb => tests/RubyTest.rb (100%) rename luatest.lua => tests/luatest.lua (100%) rename python-test.py => tests/python-test.py (100%) rename threaded-example.py => tests/python-thread.py (100%) rename {test-c-plugin => tests/test-c-plugin}/Makefile (100%) rename {test-c-plugin => tests/test-c-plugin}/test-c-plugin.c (100%) diff --git a/connect.lua b/connect.lua deleted file mode 100644 index 6b55792..0000000 --- a/connect.lua +++ /dev/null @@ -1,10 +0,0 @@ -local connect = {} - -local user = "prof1@panesar" - -function connect.prof_on_start() - prof_cons_show("Enter password for " .. user) - prof_send_line("/connect " .. user) -end - -return connect diff --git a/RubyTest.rb b/tests/RubyTest.rb similarity index 100% rename from RubyTest.rb rename to tests/RubyTest.rb diff --git a/luatest.lua b/tests/luatest.lua similarity index 100% rename from luatest.lua rename to tests/luatest.lua diff --git a/python-test.py b/tests/python-test.py similarity index 100% rename from python-test.py rename to tests/python-test.py diff --git a/threaded-example.py b/tests/python-thread.py similarity index 100% rename from threaded-example.py rename to tests/python-thread.py diff --git a/test-c-plugin/Makefile b/tests/test-c-plugin/Makefile similarity index 100% rename from test-c-plugin/Makefile rename to tests/test-c-plugin/Makefile diff --git a/test-c-plugin/test-c-plugin.c b/tests/test-c-plugin/test-c-plugin.c similarity index 100% rename from test-c-plugin/test-c-plugin.c rename to tests/test-c-plugin/test-c-plugin.c