summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/luatex/luatexbase/test-modutils.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2015-10-01 22:00:41 +0000
committerKarl Berry <karl@freefriends.org>2015-10-01 22:00:41 +0000
commit79239bc6a14e7f5723e2027696b349d1f8cc11c9 (patch)
treec0fc4d14c1daff976ee0b83464f29fd733fe1b52 /Master/texmf-dist/doc/luatex/luatexbase/test-modutils.lua
parentb0a27fa1b235b8769c32d6a4af90697503bc5f7f (diff)
luatexbase (1oct15)
git-svn-id: svn://tug.org/texlive/trunk@38513 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/luatex/luatexbase/test-modutils.lua')
-rw-r--r--Master/texmf-dist/doc/luatex/luatexbase/test-modutils.lua35
1 files changed, 0 insertions, 35 deletions
diff --git a/Master/texmf-dist/doc/luatex/luatexbase/test-modutils.lua b/Master/texmf-dist/doc/luatex/luatexbase/test-modutils.lua
deleted file mode 100644
index 45a644dfab4..00000000000
--- a/Master/texmf-dist/doc/luatex/luatexbase/test-modutils.lua
+++ /dev/null
@@ -1,35 +0,0 @@
---
--- This is file `test-modutils.lua',
--- generated with the docstrip utility.
---
--- The original source files were:
---
--- luatexbase-modutils.dtx (with options: `testdummy')
---
--- See the aforementioned source file(s) for copyright and licensing information.
---
-local err, warn, info, log = luatexbase.provides_module {
- name = 'test-modutils',
- date = '2000/01/01',
- version = 1,
- description = 'dummy test package',
-}
-luatexbase.provides_module {
- name = 'test-modutils2',
- date = '',
- version = 1,
- description = 'dummy test package',
-}
-info('It works!\nOh, rly?\nYeah rly!')
-log("I'm a one-line info.")
-info("1 = "..luatexbase.get_module_version('test-modutils'))
-if is_module_loaded('test-modutils') then
- info("ok!")
-else
- err("problem!")
-end
-info("2000/01/01 = "..luatexbase.get_module_info('test-modutils').date)
-info("20000101 = "..luatexbase.get_module_date_int('test-modutils'))
-info("-1 = "..luatexbase.get_module_date_int('test-modutils2'))
---
--- End of File `test-modutils.lua'.