diff options
Diffstat (limited to 'src/engine/SCons/Sig/SigTests.py')
-rw-r--r-- | src/engine/SCons/Sig/SigTests.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/engine/SCons/Sig/SigTests.py b/src/engine/SCons/Sig/SigTests.py index 8964c5c..6b7c83f 100644 --- a/src/engine/SCons/Sig/SigTests.py +++ b/src/engine/SCons/Sig/SigTests.py @@ -27,15 +27,6 @@ import unittest import SCons.Sig import sys -class SConsignEntryTestCase(unittest.TestCase): - - def runTest(self): - se = SCons.Sig.SConsignEntry() - assert hasattr(se, 'timestamp'), "no timestamp attribute" - assert hasattr(se, 'bsig'), "no bsig attribute" - assert hasattr(se, 'csig'), "no csig attribute" - assert hasattr(se, 'implicit'), "no implicit attribute" - class CalculatorTestCase(unittest.TestCase): def runTest(self): @@ -47,7 +38,6 @@ class CalculatorTestCase(unittest.TestCase): def suite(): suite = unittest.TestSuite() - suite.addTest(SConsignEntryTestCase()) suite.addTest(CalculatorTestCase()) return suite |