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