File: test_z_check_debug_leftovers.py

package info (click to toggle)
python-srsly 2.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,256 kB
  • sloc: python: 17,567; ansic: 1,434; sh: 12; makefile: 6
file content (39 lines) | stat: -rwxr-xr-x 891 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# coding: utf-8

import sys
import pytest  # NOQA

from .roundtrip import round_trip_load, round_trip_dump, dedent


class TestLeftOverDebug:
    # idea here is to capture round_trip_output via pytest stdout capture
    # if there is are any leftover debug statements they should show up
    def test_00(self, capsys):
        s = dedent(
            """
        a: 1
        b: []
        c: [a, 1]
        d: {f: 3.14, g: 42}
        """
        )
        d = round_trip_load(s)
        round_trip_dump(d, sys.stdout)
        out, err = capsys.readouterr()
        assert out == s

    def test_01(self, capsys):
        s = dedent(
            """
        - 1
        - []
        - [a, 1]
        - {f: 3.14, g: 42}
        - - 123
        """
        )
        d = round_trip_load(s)
        round_trip_dump(d, sys.stdout)
        out, err = capsys.readouterr()
        assert out == s