Example #1
0
 def test_uppercase(self):
     alist = ['a', 'b', 'c', 'd']
     Approvals.verify_all('uppercase', alist,
                          lambda x: '{0} => {1}'.format(x, x.upper()))
Example #2
0
 def test(self):
     alist = ['a', 'b', 'c', 'd', 'e']
     Approvals.verify_all('letters', alist, reporter=DiffReporter())
 def test(self):
     alist = ['a', 'b', 'c', 'd', 'e']
     Approvals.verify_all('letters', alist)
 def test_uppercase(self):
     alist = ['a', 'b', 'c', 'd']
     Approvals.verify_all('uppercase', alist, lambda x: '{0} => {1}'.format(x, x.upper()))
 def test(self):
     alist = ['a', 'b', 'c', 'd', 'e']
     Approvals.verify_all('letters', alist, reporter=DiffReporter())