Remove.
This commit is contained in:
parent
b1de2623d1
commit
db2e24cc65
1 changed files with 0 additions and 29 deletions
|
@ -1,29 +0,0 @@
|
|||
#!/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
|
||||
|
||||
import os
|
||||
|
||||
from pyvows import Vows, expect
|
||||
|
||||
from django_pyvows.context import DjangoContext
|
||||
from django_pyvows.assertions import *
|
||||
|
||||
from sandbox.main.views import home
|
||||
|
||||
@Vows.batch
|
||||
class DefaultsVows(DjangoContext):
|
||||
|
||||
def topic(self):
|
||||
del os.environ['DJANGO_SETTINGS_MODULE']
|
||||
return self.get_settings()
|
||||
|
||||
def should_be_using_the_default_settings(self, topic):
|
||||
expect(topic).to_equal('settings')
|
||||
|
Reference in a new issue