def test_list(self): output = """ actionmailer (2.3.14) actionpack (2.3.14) activerecord (2.3.14) activeresource (2.3.14) activesupport (3.0.5, 2.3.14) rake (0.9.2, 0.8.7) responds_to_parent (1.0.20091013) sass (3.1.15, 3.1.7) """ mock = MagicMock(return_value=output) with patch.object(gem, "_gem", new=mock): self.assertEqual( { "actionmailer": ["2.3.14"], "actionpack": ["2.3.14"], "activerecord": ["2.3.14"], "activeresource": ["2.3.14"], "activesupport": ["3.0.5", "2.3.14"], "rake": ["0.9.2", "0.8.7"], "responds_to_parent": ["1.0.20091013"], "sass": ["3.1.15", "3.1.7"], }, gem.list_(), )
def test_list(self): output = ''' actionmailer (2.3.14) actionpack (2.3.14) activerecord (2.3.14) activeresource (2.3.14) activesupport (3.0.5, 2.3.14) rake (0.9.2, 0.8.7) responds_to_parent (1.0.20091013) sass (3.1.15, 3.1.7) ''' mock = MagicMock(return_value=output) with patch.object(gem, '_gem', new=mock): self.assertEqual( {'actionmailer': ['2.3.14'], 'actionpack': ['2.3.14'], 'activerecord': ['2.3.14'], 'activeresource': ['2.3.14'], 'activesupport': ['3.0.5', '2.3.14'], 'rake': ['0.9.2', '0.8.7'], 'responds_to_parent': ['1.0.20091013'], 'sass': ['3.1.15', '3.1.7']}, gem.list_())