Exemple #1
0
 def test_plural__with_zero__list(self):
     self.assertEqual('0 units', helpers.plural([], 'unit'))
Exemple #2
0
 def test_plural__with_two__int(self):
     self.assertEqual('2 units', helpers.plural(2, 'unit'))
Exemple #3
0
 def test_plural__with_two__list(self):
     self.assertEqual('2 units', helpers.plural([1, 2], 'unit'))
Exemple #4
0
 def test_plural__with_one__int(self):
     self.assertEqual('1 unit', helpers.plural(1, 'unit'))
Exemple #5
0
 def test_plural__with_one__list(self):
     self.assertEqual('1 unit', helpers.plural([1], 'unit'))
Exemple #6
0
 def test_plural__with_zero__list(self):
     self.assertEqual('0 units', helpers.plural([], 'unit'))
Exemple #7
0
 def test_plural__with_two__list(self):
     self.assertEqual('2 units', helpers.plural([1, 2], 'unit'))
Exemple #8
0
 def test_plural__with_two__int(self):
     self.assertEqual('2 units', helpers.plural(2, 'unit'))
Exemple #9
0
 def test_plural__with_one__list(self):
     self.assertEqual('1 unit', helpers.plural([1], 'unit'))
Exemple #10
0
 def test_plural__with_one__int(self):
     self.assertEqual('1 unit', helpers.plural(1, 'unit'))