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 49 50 51 52 53 54 55
|
#!/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
def a_function():
pass
@Vows.batch
class AssertionIsFunction(Vows.Context):
class WhenItIsAFunction(Vows.Context):
def topic(self):
def my_func():
pass
return my_func
def we_assert_it_is_a_function(self, topic):
expect(topic).to_be_a_function()
class WhenWeGetAnError(Vows.Context):
@Vows.capture_error
def topic(self):
expect(4).to_be_a_function()
def we_get_an_understandable_message(self, topic):
msg = 'Expected topic(4) to be a function or a method, but it was a {0!s}'.format(int)
expect(topic).to_have_an_error_message_of(msg)
class WhenItNotAFunction(Vows.Context):
def topic(self):
return 42
def we_assert_it_is_not_a_function(self, topic):
expect(topic).Not.to_be_a_function()
class WhenWeGetAnError(Vows.Context):
@Vows.capture_error
def topic(self):
expect(a_function).not_to_be_a_function()
def we_get_an_understandable_message(self, topic):
msg = 'Expected topic({0!s}) not to be a function or a method'.format(a_function)
expect(topic).to_have_an_error_message_of(msg)
|