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