コード例 #1
0
ファイル: test_models.py プロジェクト: rhelmer/zamboni
 def test_no_dups(self, scores):
     # The inner dict is the recommended addons for addon 7.
     scores.return_value = {7: {1: 5, 2: 3, 3: 4}}
     recs = RecommendedCollection.build_recs([7, 3, 8])
     # 3 should not be in the list since we already have it.
     eq_(recs, [1, 2])
コード例 #2
0
ファイル: test_models.py プロジェクト: rhelmer/zamboni
 def test_build_recs(self):
     eq_(RecommendedCollection.build_recs(self.ids), self.expected_recs())
コード例 #3
0
ファイル: test_models.py プロジェクト: sgarrity/zamboni
 def test_build_recs(self):
     recs = RecommendedCollection.build_recs(self.ids)
     eq_(recs, self.expected_recs())
コード例 #4
0
ファイル: test_models.py プロジェクト: MisbahKhan9211/olympia
 def test_no_dups(self, scores):
     # The inner dict is the recommended addons for addon 7.
     scores.return_value = {7: {1: 5, 2: 3, 3: 4}}
     recs = RecommendedCollection.build_recs([7, 3, 8])
     # 3 should not be in the list since we already have it.
     eq_(recs, [1, 2])
コード例 #5
0
ファイル: test_models.py プロジェクト: MisbahKhan9211/olympia
 def test_build_recs(self):
     eq_(RecommendedCollection.build_recs(self.ids), self.expected_recs())
コード例 #6
0
ファイル: test_models.py プロジェクト: LittleForker/zamboni
 def test_build_recs(self):
     recs = RecommendedCollection.build_recs(self.ids)
     eq_(recs, self.expected_recs())