File: test_nullable.py

package info (click to toggle)
preggy 1.4.4-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 408 kB
  • sloc: python: 1,929; makefile: 22; sh: 8
file content (34 lines) | stat: -rw-r--r-- 788 bytes parent folder | download | duplicates (7)
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
# -*- coding: utf-8 -*-

# preggy assertions
# https://github.com/heynemann/preggy

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

from preggy import expect

#-----------------------------------------------------------------------------

def test_to_be_null():
    expect(None).to_be_null()

    try:
        expect(None).not_to_be_null()
    except AssertionError:
        return

    assert False, 'Should not have gotten this far'


def test_not_to_be_null():
    expect('something').Not.to_be_null()
    expect('something').not_to_be_null()

    try:
        expect('something').to_be_null()
    except AssertionError:
        return

    assert False, 'Should not have gotten this far'