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.
|
# Tests rblf_env access
|
|
load("assert.star", "assert")
|
|
|
|
|
|
def test():
|
|
assert.eq(rblf_env.TEST_ENVIRONMENT_FOO, "test_environment_foo")
|
|
assert.fails(lambda: rblf_env.FOO_BAR_BAZ, ".*struct has no .FOO_BAR_BAZ attribute$")
|
|
assert.eq(rblf_cli.CLI_FOO, "foo")
|
|
|
|
|
|
test()
|