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