重複的代碼我有一個HTML文件:檢查使用Beautifulsoup
<html>
<html>
</html>
</html>
我想讀我的test.py文件,其中我對任何重複的HTML標籤測試使用beautifulsoup此文件。我有下面的斷言條件,它檢查一個html標籤是否存在,但沒有任何條件來檢查單個文件中是否有重複的html標籤。
def testing(self):
try:
assert self.soup.find('html') != None
except AssertionError, e:
raise Exception("HTML Tag is missing!")
如何在測試中包含此項?