This repository has been archived on 2023-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
django-pyvows/vows/url_vows.py

33 lines
855 B
Python
Raw Normal View History

2011-05-08 02:33:25 +00:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
# django-pyvows extensions
# https://github.com/rafaelcaricio/django-pyvows
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 Rafael Caricio rafael@caricio.com
from os.path import abspath, join, dirname
from pyvows import Vows, expect
from django_pyvows import DjangoContext, Assertions
from sandbox.main.views import home
class UrlVows(DjangoContext):
def settings_path(self):
return abspath(join(dirname(__file__), 'sandbox', 'settings.py'))
class Home(Vows.Context):
def topic(self):
return self._url('/')
def should_have_home_url_mapped(self, topic):
expect(topic).to_be_mapped()
def should_have_url_mapped_to_home_view(self, topic):
expect(topic).to_match_view(home)