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