Commit df762a7a authored by Léo-Paul Géneau's avatar Léo-Paul Géneau 👾

Update tests

Update tests to comply with commits:
- 904ef9ec (--no-rdoc and --no-ri
options deletion)
- c58aba06 (adds ruby executable path to commands)
parent 5ab66f71
Pipeline #12046 passed with stage
in 0 seconds
......@@ -9,6 +9,7 @@ import shutil
import subprocess
import tempfile
import unittest
import re
from six import BytesIO
......@@ -117,7 +118,7 @@ class RubyGemsTests(unittest.TestCase):
args = patches['check_output'].mock_calls[1][1]
self.assertEqual(args[0], [
None, 'install', '--no-rdoc', '--no-ri',
'ruby', None, 'install',
'--bindir=%s/rubygems/bin' % path,
'sass', '--'
])
......@@ -198,8 +199,8 @@ class RubyGemsTests(unittest.TestCase):
recipe.install()
args = patches['check_output'].mock_calls[0][1]
self.assertEqual(args[0], [
'%s/rubygems/bin/gem' % path, 'install', '--no-rdoc', '--no-ri',
'--bindir=%s/rubygems/bin' % path,
'sass', '--version=1.0', '--'
])
for arg in args[0]:
matched = re.search('^--version.*$', arg)
if matched:
self.assertEqual(matched.group(), '--version=1.0')
break
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment