File: cli_vows.py

package info (click to toggle)
pyvows 3.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 500 kB
  • sloc: python: 3,884; makefile: 19; sh: 8
file content (48 lines) | stat: -rw-r--r-- 1,314 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
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# pyvows testing engine
# https://github.com/heynemann/pyvows

# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 Bernardo Heynemann heynemann@gmail.com
import argparse

from pyvows import Vows, expect
from pyvows.cli import Parser


mock_args = (
    '--cover',
    '--profile',
)


@Vows.batch
class PyVowsCommandLineInterface(Vows.Context):

    class ArgumentParser(Vows.Context):
        def topic(self):
            # suppress the defaults, or the test breaks :/
            parser = Parser(argument_default=argparse.SUPPRESS)
            return parser

        def we_have_a_parser(self, topic):
            expect(topic).to_be_instance_of(argparse.ArgumentParser)

        def we_dont_get_an_error(self, topic):
            expect(topic).not_to_be_an_error()

        class ParsesCorrectly(Vows.Context):
            def topic(self, parser):
                return parser.parse_args(mock_args)

            def should_contain_cover(self, topic):
                expect('cover' in topic).to_be_true()

            def cover_should_be_true(self, topic):
                expect(topic.cover).to_be_true()

            def profile_should_be_true(self, topic):
                expect(topic.profile).to_be_true()