Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
8d0ceeca
Commit
8d0ceeca
authored
Apr 30, 2015
by
Toshio Kuratomi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make template test work with both py2.6 and 2.7+
parent
aafda44b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
3 deletions
+21
-3
test/integration/roles/test_template/files/foo-py26.txt
+8
-0
test/integration/roles/test_template/files/foo.txt
+3
-3
test/integration/roles/test_template/tasks/main.yml
+10
-0
No files found.
test/integration/roles/test_template/files/foo-py26.txt
0 → 100644
View file @
8d0ceeca
templated_var_loaded
{
"bool": true,
"multi_part": "1Foo",
"number": 5,
"string_num": "5"
}
test/integration/roles/test_template/files/foo.txt
View file @
8d0ceeca
templated_var_loaded
templated_var_loaded
{
{
"bool": true,
"bool": true,
"multi_part": "1Foo",
"multi_part": "1Foo",
"number": 5,
"number": 5,
"string_num": "5"
"string_num": "5"
}
}
test/integration/roles/test_template/tasks/main.yml
View file @
8d0ceeca
...
@@ -41,8 +41,18 @@
...
@@ -41,8 +41,18 @@
# VERIFY CONTENTS
# VERIFY CONTENTS
-
name
:
check what python version ansible is running on
command
:
python -c 'import distutils.sysconfig ; print(distutils.sysconfig.get_python_version())'
register
:
pyver
delegate_to
:
localhost
-
name
:
copy known good into place
-
name
:
copy known good into place
copy
:
src=foo.txt dest={{output_dir}}/foo.txt
copy
:
src=foo.txt dest={{output_dir}}/foo.txt
when
:
pyver.stdout != '2.6'
-
name
:
copy known good into place
copy
:
src=foo-py2.6.txt dest={{output_dir}}/foo.txt
when
:
pyver.stdout == '2.6'
-
name
:
compare templated file to known good
-
name
:
compare templated file to known good
shell
:
diff {{output_dir}}/foo.templated {{output_dir}}/foo.txt
shell
:
diff {{output_dir}}/foo.templated {{output_dir}}/foo.txt
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment