Skip to content
Snippets Groups Projects
Commit ba5f47b10012 authored by alorimier's avatar alorimier
Browse files

Remove Debug print

parent f0b4763b9faf
No related branches found
No related tags found
No related merge requests found
......@@ -81,8 +81,6 @@
base_img = '<img src="%s" />'
imgsrc = base_img % img_url
print "*" * 35
print "Testing text replacement"
new_text, values = insert_tracker_in_text(text, 'BASE', '1')
assert len(values) == 1, "Values should contain only one record"
......@@ -93,9 +91,8 @@
assert track_uuid, "Track uuid should not be None"
real_url = value.get("real_url", None)
print "Real URL was: %s" % real_url
assert real_url == url, "Real URL should have been %s, not %s" % (
url, real_url)
assert new_text == '%s/%s' % ('BASE', track_uuid)
......@@ -97,9 +94,7 @@
assert real_url == url, "Real URL should have been %s, not %s" % (
url, real_url)
assert new_text == '%s/%s' % ('BASE', track_uuid)
print "*" * 35
print "Testing HTML replacement"
new_html, values = insert_tracker_in_html(html, 'BASE', '1')
......@@ -104,6 +99,5 @@
new_html, values = insert_tracker_in_html(html, 'BASE', '1')
print new_html
assert len(values) == 1, \
"Values should have one record, not %s" % len(values)
......@@ -113,10 +107,9 @@
assert track_uuid, "Track uuid should not be None"
real_url = value.get("real_url", None)
print "Real URL was: %s" % real_url
assert real_url == url, "Real URL should have been %s, not %s" % (
url, real_url)
expected_html = base_html % ('BASE/' + track_uuid)
assert new_html == expected_html
......@@ -117,10 +110,8 @@
assert real_url == url, "Real URL should have been %s, not %s" % (
url, real_url)
expected_html = base_html % ('BASE/' + track_uuid)
assert new_html == expected_html
print "*" * 35
print "Testing img src replacement"
new_html, values = insert_tracker_in_html(imgsrc, 'BASE', '1')
......@@ -125,6 +116,5 @@
new_html, values = insert_tracker_in_html(imgsrc, 'BASE', '1')
print new_html
assert len(values) == 1, \
"Values should have one record, not %s" % len(values)
......@@ -134,7 +124,6 @@
assert track_uuid, "Track uuid should not be None"
real_url = value.get("real_url", None)
print "Real URL was: %s" % real_url
assert real_url == img_url, "Real URL should have been %s, not %s" % (
img_url, real_url)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment