diff options
Diffstat (limited to 'src/engine/SCons/ActionTests.py')
| -rw-r--r-- | src/engine/SCons/ActionTests.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/engine/SCons/ActionTests.py b/src/engine/SCons/ActionTests.py index 890abb2..f0905b6 100644 --- a/src/engine/SCons/ActionTests.py +++ b/src/engine/SCons/ActionTests.py @@ -322,8 +322,11 @@ class ActionTestCase(unittest.TestCase): assert a2 is a1, a2 class ActionBaseTestCase(unittest.TestCase): - # Maybe write this in the future... - pass + def test_get_executor(self): + """Test the ActionBase.get_executor() method""" + a = SCons.Action.Action('foo') + x = a.get_executor({}, {}, [], [], {}) + assert not x is None, x class _ActionActionTestCase(unittest.TestCase): |
