2015-07-29 21:01:38 +02:00
|
|
|
-- This script is given to Busted via the --helper argument. Modules loaded here
|
|
|
|
-- won't be cleared and reloaded by Busted. This is needed for lgi because lgi
|
|
|
|
-- is not safe to reload and yet Busted manages to do this.
|
2022-05-29 22:10:29 +02:00
|
|
|
require "lgi"
|
2015-12-12 17:42:33 +01:00
|
|
|
|
2017-03-03 00:54:10 +01:00
|
|
|
-- Always show deprecated messages
|
2022-05-29 22:10:29 +02:00
|
|
|
_G.awesome = {
|
|
|
|
version = "v9999",
|
|
|
|
api_level = 9999,
|
|
|
|
}
|
2017-03-03 00:54:10 +01:00
|
|
|
|
2017-02-15 00:46:27 +01:00
|
|
|
-- "fix" some intentional beautiful breakage done by .travis.yml
|
2022-05-29 22:10:29 +02:00
|
|
|
require("beautiful").init { a_key = "a_value" }
|
2017-02-15 00:46:27 +01:00
|
|
|
|
2015-12-12 17:42:33 +01:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|