コード例 #1
0
ファイル: test_cron.py プロジェクト: 1234-/kitsune
    def test_old_articles_helpful(self):
        """Doesn't return helpful votes within range"""
        r = _make_backdated_revision(90)

        for x in range(0, 4):
            _add_vote_in_past(r, 1, 10)

        _add_vote_in_past(r, 0, 10)

        result = _get_old_unhelpful()
        eq_(0, len(result))
コード例 #2
0
ファイル: test_cron.py プロジェクト: zctyhj/kitsune
    def test_old_articles_helpful(self):
        """Doesn't return helpful votes within range"""
        r = _make_backdated_revision(90)

        for x in range(0, 4):
            _add_vote_in_past(r, 1, 10)

        _add_vote_in_past(r, 0, 10)

        result = _get_old_unhelpful()
        eq_(0, len(result))
コード例 #3
0
ファイル: test_cron.py プロジェクト: 1234-/kitsune
    def test_old_articles(self):
        """Returns unhelpful votes within time range"""
        r = _make_backdated_revision(10)

        # Add 4 no votes 1.5 weeks ago
        for x in range(4):
            _add_vote_in_past(r, 0, 10)

        # Add 1 yes vote 1.5 weeks ago
        _add_vote_in_past(r, 1, 10)

        result = _get_old_unhelpful()
        eq_(1, len(result))
        self.assertAlmostEqual(0.2, result[r.document.id]['percentage'])
        eq_(5, result[r.document.id]['total'])
コード例 #4
0
ファイル: test_cron.py プロジェクト: zctyhj/kitsune
    def test_old_articles(self):
        """Returns unhelpful votes within time range"""
        r = _make_backdated_revision(90)

        # Add 4 no votes 1.5 months ago
        for x in range(0, 4):
            _add_vote_in_past(r, 0, 10)

        # Add 1 yes vote 1.5 months ago
        _add_vote_in_past(r, 1, 10)

        result = _get_old_unhelpful()
        eq_(1, len(result))
        self.assertAlmostEqual(0.2, result[r.document.id]['percentage'])
        eq_(5, result[r.document.id]['total'])
コード例 #5
0
ファイル: test_cron.py プロジェクト: 1234-/kitsune
 def test_no_old_articles(self):
     """Make sure _get_old_articles() returns nothing with no votes."""
     result = _get_old_unhelpful()
     eq_(0, len(result))
コード例 #6
0
ファイル: test_cron.py プロジェクト: zctyhj/kitsune
 def test_no_old_articles(self):
     """Make sure _get_old_articles() returns nothing with no votes."""
     result = _get_old_unhelpful()
     eq_(0, len(result))