Some renaming.
[pyyaml/python3.git] / tests / test_marker.py
blobac36bd556937791ba61f39c90ffa537f3275f549
2 import test_appliance
4 from yaml.reader import Marker
6 class TestMarker(test_appliance.TestAppliance):
8 def _testMarkers(self, test_name, markers_filename):
9 inputs = file(markers_filename, 'rb').read().split('---\n')[1:]
10 for input in inputs:
11 index = 0
12 line = 0
13 column = 0
14 while input[index] != '*':
15 if input[index] == '\n':
16 line += 1
17 column = 0
18 else:
19 column += 1
20 index += 1
21 marker = Marker(test_name, line, column, unicode(input), index)
22 snippet = marker.get_snippet()
23 #print "INPUT:"
24 #print input
25 #print "SNIPPET:"
26 #print snippet
27 self.failUnless(isinstance(snippet, str))
28 self.failUnlessEqual(snippet.count('\n'), 2)
29 data, pointer, dummy = snippet.split('\n')
30 self.failUnless(len(data) < 80)
31 self.failUnlessEqual(data[len(pointer)-1], '*')
33 TestMarker.add_tests('testMarkers', '.markers')