summaryrefslogtreecommitdiff
path: root/_test/test_line_col.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-08-05 17:05:06 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-08-05 17:05:06 +0200
commite58ed78b291889578477741fb5ad5f05bf914d6b (patch)
tree73fa7be33210f4e9ee033f662486643e041dfdd0 /_test/test_line_col.py
parent992aecee297f7fe781eddc715fff6d7f5bbed875 (diff)
downloadruamel.yaml-e58ed78b291889578477741fb5ad5f05bf914d6b.tar.gz
undid miswrapping of tests
Diffstat (limited to '_test/test_line_col.py')
-rw-r--r--_test/test_line_col.py42
1 files changed, 14 insertions, 28 deletions
diff --git a/_test/test_line_col.py b/_test/test_line_col.py
index 4f7ad5d..febe9c2 100644
--- a/_test/test_line_col.py
+++ b/_test/test_line_col.py
@@ -11,94 +11,80 @@ def load(s):
class TestLineCol:
def test_item_00(self):
- data = load(
- """
+ data = load("""
- a
- e
- [b, d]
- c
- """
- )
+ """)
assert data[2].lc.line == 2
assert data[2].lc.col == 2
def test_item_01(self):
- data = load(
- """
+ data = load("""
- a
- e
- {x: 3}
- c
- """
- )
+ """)
assert data[2].lc.line == 2
assert data[2].lc.col == 2
def test_item_02(self):
- data = load(
- """
+ data = load("""
- a
- e
- !!set {x, y}
- c
- """
- )
+ """)
assert data[2].lc.line == 2
assert data[2].lc.col == 2
def test_item_03(self):
- data = load(
- """
+ data = load("""
- a
- e
- !!omap
- x: 1
- y: 3
- c
- """
- )
+ """)
assert data[2].lc.line == 2
assert data[2].lc.col == 2
def test_item_04(self):
- data = load(
- """
+ data = load("""
# testing line and column based on SO
# http://stackoverflow.com/questions/13319067/
- key1: item 1
key2: item 2
- key3: another item 1
key4: another item 2
- """
- )
+ """)
assert data[0].lc.line == 2
assert data[0].lc.col == 2
assert data[1].lc.line == 4
assert data[1].lc.col == 2
def test_pos_mapping(self):
- data = load(
- """
+ data = load("""
a: 1
b: 2
c: 3
# comment
klm: 42
d: 4
- """
- )
+ """)
assert data.lc.key('klm') == (4, 0)
assert data.lc.value('klm') == (4, 5)
def test_pos_sequence(self):
- data = load(
- """
+ data = load("""
- a
- b
- c
# next one!
- klm
- d
- """
- )
+ """)
assert data.lc.item(3) == (4, 2)