summaryrefslogtreecommitdiff
path: root/tests/modtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/modtest.cpp')
-rw-r--r--tests/modtest.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/modtest.cpp b/tests/modtest.cpp
deleted file mode 100644
index d3bd701..0000000
--- a/tests/modtest.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <swmgr.h>
-#include <swtext.h>
-#include <iostream>
-#ifndef NO_SWORD_NAMESPACE
-using namespace sword;
-#endif
-
-int main(int argc, char **argv) {
- SWMgr mymgr;
- ModMap::iterator it;
- SWModule *module = mymgr.Modules["RWP"];
- VerseKey parser;
- ListKey lk = parser.ParseVerseList("mal4:6-rev", parser, true);
- lk.Persist(1);
- module->SetKey(lk);
-
- (*module) = TOP;
- std::cout << module->KeyText() << "\n";
- return 0;
-}