Exemple #1
0
 def test_price_sort(self):
     apps = test_listing_sort(self,
                              'price',
                              None,
                              reverse=False,
                              sel_class='extra-opt')
     eq_(
         apps,
         list(Webapp.objects.listed().order_by('addonpremium__price__price',
                                               'id')))
Exemple #2
0
 def test_newest_sort(self):
     test_listing_sort(self, 'created', 'created')
Exemple #3
0
 def test_upandcoming_sort(self):
     test_listing_sort(self, 'hotness', 'hotness', sel_class='extra-opt')
Exemple #4
0
 def test_updated_sort(self):
     test_listing_sort(self, 'updated', 'last_updated',
                       sel_class='extra-opt')
Exemple #5
0
 def test_featured_sort(self):
     test_listing_sort(self, 'featured', sel_class='extra-opt')
Exemple #6
0
 def test_updated_sort(self):
     test_listing_sort(self,
                       'updated',
                       'last_updated',
                       sel_class='extra-opt')
Exemple #7
0
 def test_newest_sort(self):
     test_listing_sort(self, 'created', 'created', sel_class='extra-opt')
Exemple #8
0
 def test_price_sort(self):
     apps = test_listing_sort(self, 'price', None, reverse=False,
                              sel_class='extra-opt')
     eq_(apps, list(Webapp.objects.listed()
                    .order_by('addonpremium__price__price', 'id')))
Exemple #9
0
 def test_paid_sort(self):
     for app in test_listing_sort(self, 'paid', 'weekly_downloads'):
         eq_(app.is_premium(), True)
Exemple #10
0
 def test_free_sort(self):
     for app in test_listing_sort(self, 'free', 'weekly_downloads'):
         eq_(app.is_premium(), False)
Exemple #11
0
 def test_newest_sort(self):
     test_listing_sort(self, 'created', 'created')
Exemple #12
0
 def test_newest_sort(self):
     test_listing_sort(self, "created", "created")
Exemple #13
0
 def test_upandcoming_sort(self):
     test_listing_sort(self, 'hotness', 'hotness', sel_class='extra-opt')
Exemple #14
0
 def test_free_sort(self):
     for app in test_listing_sort(self, 'free', 'weekly_downloads'):
         eq_(app.is_premium(), False)
Exemple #15
0
 def test_rating_sort(self):
     test_listing_sort(self, 'rating', 'bayesian_rating')
Exemple #16
0
 def test_paid_sort(self):
     for app in test_listing_sort(self, 'paid', 'weekly_downloads'):
         eq_(app.is_premium(), True)
Exemple #17
0
 def test_newest_sort(self):
     test_listing_sort(self, 'created', 'created', sel_class='extra-opt')
Exemple #18
0
 def test_rating_sort(self):
     test_listing_sort(self, 'rating', 'bayesian_rating')
Exemple #19
0
 def test_name_sort(self):
     test_listing_sort(self, 'name', 'name', reverse=False,
                       sel_class='extra-opt')
Exemple #20
0
 def test_name_sort(self):
     test_listing_sort(self, 'name', 'name', reverse=False,
                       sel_class='extra-opt')
Exemple #21
0
 def test_featured_sort(self):
     test_listing_sort(self, 'featured', sel_class='extra-opt')