summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/TaskmasterTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/SCons/TaskmasterTests.py')
-rw-r--r--src/engine/SCons/TaskmasterTests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/engine/SCons/TaskmasterTests.py b/src/engine/SCons/TaskmasterTests.py
index d8bcc4f..79ff11b 100644
--- a/src/engine/SCons/TaskmasterTests.py
+++ b/src/engine/SCons/TaskmasterTests.py
@@ -57,6 +57,9 @@ class Node:
global built_text
built_text = self.name + " built"
+ def has_builder(self):
+ return not self.builder is None
+
def built(self):
global built_text
built_text = built_text + " really"