예제 #1
0
 def test_min3_parsing_the_strings_is_not_a_responsability_of_this_function(self):
     ''' DUMPER '''
     eq_(min3('a,b', 'cab', 'b,a'), 'a,b')
예제 #2
0
 def test_min3_repeated_strings(self):
     ''' DUMPER '''
     eq_(min3('b', 'a', 'a'), 'a')
예제 #3
0
 def test_min3_repeated_strings(self):
     ''' DUMPER '''
     assert min3('b', 'a', 'a') == 'a'
예제 #4
0
 def test_min3_simple_strings(self):
     ''' DUMPER '''
     eq_(min3('a', 'b', 'c'), 'a')
예제 #5
0
 def test_min3_simple_strings(self):
     ''' DUMPER '''
     assert min3('a', 'b', 'c') == 'a'