test_SQLi.py 601 B

1234567891011121314151617181920212223
  1. import unittest
  2. import Test.GenericTest as GenericTest
  3. sha_default = 'a130ecdaf5fd8c09ef8418d2dbe7bd68c54e922553eb9fa703df016115393a46'
  4. """
  5. CURRENT COVERAGE
  6. Name Stmts Miss Cover Missing (lines)
  7. ---------------------------------------------------------------------------
  8. Attack/SQLiAttack.py 159 5 97% 62, 71, 113, 120, 245
  9. """
  10. # TODO: get 100% coverage
  11. class UnitTestSQLi(GenericTest.GenericTest):
  12. def test_sqli_default(self):
  13. self.generic_test([['SQLiAttack']], sha_default)
  14. if __name__ == '__main__':
  15. unittest.main()