1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# Reachable bundle tests verify that you are allowed have references
# to undefined bundles, as long as they are not actually called.
# These tests are left very simple on purpose,
# they are not using the test framework.
# They should be seen together, note that defined vs undefined variants are
# almost identical, just replacing one detail to show what should work
# and what should error.
bundle agent foo
{
reports:
"$(this.promise_filename) Pass";
}
bundle agent main
{
methods:
"foo";
}
|