File: nullable_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 (45 lines) | stat: -rw-r--r-- 1,353 bytes parent folder | download | duplicates (4)
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
#!/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

from pyvows import Vows, expect


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

    class WhenItIsNull(Vows.Context):
        def topic(self):
            return None

        def we_get_to_check_for_nullability_in_None(self, topic):
            expect(topic).to_be_null()

        class WhenWeGetAnError(Vows.Context):
            @Vows.capture_error
            def topic(self, last):
                expect(1).to_be_null()

            def we_get_an_understandable_message(self, topic):
                expect(topic).to_have_an_error_message_of("Expected topic(1) to be None")

    class WhenItIsNotNull(Vows.Context):
        def topic(self):
            return "something"

        def we_see_string_is_not_null(self, topic):
            expect(topic).not_to_be_null()

        class WhenWeGetAnError(Vows.Context):
            @Vows.capture_error
            def topic(self, last):
                expect(None).not_to_be_null()

            def we_get_an_understandable_message(self, topic):
                expect(topic).to_have_an_error_message_of("Expected topic(None) not to be None")