This file is indexed.

/usr/share/doc/lua-lemock/README is in lua-lemock 0.6-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
LeMock Readme


== What is Lua Easy Mock ==

LeMock (Lua Easy Mock) is a mock creation module intended for use together
with a unit test framework such as lunit or lunity. It is inspired by
EasyMock (for Java), and strives to be easy to use.


== Availability ==

LeMock is hosted at LuaForge at http://luaforge.net/projects/lemock/


== Installation ==

Copy the file build/lemock.lua to a Lua search path directory. This is
usually something like ``/usr/share/lua/5.1/`` or
``/usr/local/lib/lua/5.1/``. You can type ``print(package.path)`` at the
Lua prompt to see what search path your Lua installation is using.

Documentation in HTML format is available in build/htdocs/.


== License ==

LeMock is licensed under the MIT license, which is the same license that
Lua uses. See COPYRIGHT_ for full terms.


== User Documentation ==

See build/htdocs/userguide.html.


== Development ==

LeMock is implemented in Lua 5.1, but its source code is written as
literate documents, and uses the tool noweb to tangle the .lua files. The
distributed source archive includes all the tangled files, to avoid
depending on noweb for installation. See DEVEL_ for information about how
the source code is organized, and what tools are needed for the build
process.