Example #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')))
Example #2
0
 def test_newest_sort(self):
     test_listing_sort(self, 'created', 'created')
Example #3
0
 def test_upandcoming_sort(self):
     test_listing_sort(self, 'hotness', 'hotness', sel_class='extra-opt')
Example #4
0
 def test_updated_sort(self):
     test_listing_sort(self, 'updated', 'last_updated',
                       sel_class='extra-opt')
Example #5
0
 def test_featured_sort(self):
     test_listing_sort(self, 'featured', sel_class='extra-opt')
Example #6
0
 def test_updated_sort(self):
     test_listing_sort(self,
                       'updated',
                       'last_updated',
                       sel_class='extra-opt')
Example #7
0
 def test_newest_sort(self):
     test_listing_sort(self, 'created', 'created', sel_class='extra-opt')
Example #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')))
Example #9
0
 def test_paid_sort(self):
     for app in test_listing_sort(self, 'paid', 'weekly_downloads'):
         eq_(app.is_premium(), True)
Example #10
0
 def test_free_sort(self):
     for app in test_listing_sort(self, 'free', 'weekly_downloads'):
         eq_(app.is_premium(), False)
Example #11
0
 def test_newest_sort(self):
     test_listing_sort(self, 'created', 'created')
Example #12
0
 def test_newest_sort(self):
     test_listing_sort(self, "created", "created")
Example #13
0
 def test_upandcoming_sort(self):
     test_listing_sort(self, 'hotness', 'hotness', sel_class='extra-opt')
Example #14
0
 def test_free_sort(self):
     for app in test_listing_sort(self, 'free', 'weekly_downloads'):
         eq_(app.is_premium(), False)
Example #15
0
 def test_rating_sort(self):
     test_listing_sort(self, 'rating', 'bayesian_rating')
Example #16
0
 def test_paid_sort(self):
     for app in test_listing_sort(self, 'paid', 'weekly_downloads'):
         eq_(app.is_premium(), True)
Example #17
0
 def test_newest_sort(self):
     test_listing_sort(self, 'created', 'created', sel_class='extra-opt')
Example #18
0
 def test_rating_sort(self):
     test_listing_sort(self, 'rating', 'bayesian_rating')
Example #19
0
 def test_name_sort(self):
     test_listing_sort(self, 'name', 'name', reverse=False,
                       sel_class='extra-opt')
Example #20
0
 def test_name_sort(self):
     test_listing_sort(self, 'name', 'name', reverse=False,
                       sel_class='extra-opt')
Example #21
0
 def test_featured_sort(self):
     test_listing_sort(self, 'featured', sel_class='extra-opt')