Skip to content

Commit

Permalink
#55
Browse files Browse the repository at this point in the history
  • Loading branch information
prashanth-sams committed Sep 12, 2020
1 parent cb9ae78 commit feac5b8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tests/unit/test_html_template.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import sys
import os

myPath = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, myPath + '/../../')
from pytest_html_reporter.template import html_template


def test_html_template():
if "".__eq__(html_template()):
raise Exception("invalid method: html_template")
else:
pass

0 comments on commit feac5b8

Please sign in to comment.