diff options
| author | Tim Orling <TicoTimo@gmail.com> | 2016-10-01 11:48:34 -0700 |
|---|---|---|
| committer | Tim Orling <TicoTimo@gmail.com> | 2016-10-01 11:48:34 -0700 |
| commit | 41300e99138a1044e21d32447e2bea29e588fd7f (patch) | |
| tree | 8733159d5f53505e35a92c56d6d924f0011e6407 /tests | |
| download | epel6-testing-container-41300e99138a1044e21d32447e2bea29e588fd7f.tar.gz epel6-testing-container-41300e99138a1044e21d32447e2bea29e588fd7f.tar.xz epel6-testing-container-41300e99138a1044e21d32447e2bea29e588fd7f.zip | |
Initial container to test BZ#1369486 fix
docker build -t epel6-testing .
docker run --rm -t epel6-testing
Signed-off-by: Tim Orling <TicoTimo@gmail.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_bz1369486.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/test_bz1369486.py b/tests/test_bz1369486.py new file mode 100644 index 0000000..0817bc1 --- /dev/null +++ b/tests/test_bz1369486.py @@ -0,0 +1,39 @@ +# Copyright (C) 2016 Intel Corporation +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +import os +import pytest +import shlex +from subprocess import Popen, PIPE + +class TestPython2Macros: + + @pytest.fixture + def python2_version_macro(self): + cmd = shlex.split("rpm -E %python2_version") + output = Popen(cmd, stdout=PIPE).communicate()[0] + return output + + @pytest.fixture + def python2_version_nodots_macro(self): + cmd = shlex.split("rpm -E %python2_version_nodots") + output = Popen(cmd, stdout=PIPE).communicate()[0] + return output + + def test_python2_version_macro(self, python2_version_macro): + assert python2_version_macro == '2.6\n' + + def test_python2_version_nodots_macro(self, python2_version_nodots_macro): + assert python2_version_nodots_macro == '26\n' |
