示例#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'))