8 lines
238 B
Plaintext
8 lines
238 B
Plaintext
|
# Module loaded my load.star
|
||
|
load("assert.star", "assert")
|
||
|
|
||
|
# Make sure that builtins are defined for the loaded module, too
|
||
|
assert.true(rblf_file_exists("module1.star"))
|
||
|
assert.true(not rblf_file_exists("no_such file"))
|
||
|
test = "module1"
|