Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
marketing_campaign_tracker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo modules
marketing_campaign_tracker
Commits
ba5f47b10012
Commit
ba5f47b10012
authored
11 years ago
by
alorimier
Browse files
Options
Downloads
Patches
Plain Diff
Remove Debug print
parent
f0b4763b9faf
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
replace.py
+0
-11
0 additions, 11 deletions
replace.py
with
0 additions
and
11 deletions
replace.py
+
0
−
11
View file @
ba5f47b1
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment