You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 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"
|