mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-05 23:48:31 -04:00
11 lines
204 B
Lua
11 lines
204 B
Lua
-- Description: Test require()ing another script
|
|
local nested = {}
|
|
nested.top = require('test/top')
|
|
|
|
-- create some test functions to call
|
|
function nested.call_fn()
|
|
return "nested"
|
|
end
|
|
|
|
return nested
|