/usr/share/lua/5.1/luassert/init.lua is in lua-luassert 1.7.10-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 | local assert = require('luassert.assert')
assert._COPYRIGHT = "Copyright (c) 2012 Olivine Labs, LLC."
assert._DESCRIPTION = "Extends Lua's built-in assertions to provide additional tests and the ability to create your own."
assert._VERSION = "Luassert 1.7.9"
-- load basic asserts
require('luassert.assertions')
require('luassert.modifiers')
require('luassert.matchers')
require('luassert.formatters')
-- load default language
require('luassert.languages.en')
return assert
|