diff options
author | Steven Knight <knight@baldmt.com> | 2003-09-15 14:01:28 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-09-15 14:01:28 (GMT) |
commit | c41dc6daf69787a9f4d4984aec727af705445e46 (patch) | |
tree | 24ce63856445f3ab2b29f4593bd0cb886cd4f4ba /test/Help.py | |
parent | f36ff530132ecfe7941f80d2d6e5f03f75decf41 (diff) | |
download | SCons-c41dc6daf69787a9f4d4984aec727af705445e46.zip SCons-c41dc6daf69787a9f4d4984aec727af705445e46.tar.gz SCons-c41dc6daf69787a9f4d4984aec727af705445e46.tar.bz2 |
Turn more global functions into Environment methods. (clone of 0.92.C121)
Diffstat (limited to 'test/Help.py')
-rw-r--r-- | test/Help.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/Help.py b/test/Help.py index d88b715..ea356ba 100644 --- a/test/Help.py +++ b/test/Help.py @@ -44,4 +44,20 @@ Use scons -H for help about command-line options. test.run(arguments = '-h', stdout = expect) +test.write('SConstruct', r""" +env = Environment(MORE='more', HELP='help') +env.Help("\nEven $MORE\n$HELP text!\n") +""") + +expect = """scons: Reading SConscript files ... +scons: done reading SConscript files. + +Even more +help text! + +Use scons -H for help about command-line options. +""" + +test.run(arguments = '-h', stdout = expect) + test.pass_test() |