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/settings_vows.py

81 lines
2.4 KiB
Python
Raw Normal View History

2011-08-22 20:06:54 +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 pyvows import Vows, expect
from django_pyvows.context import DjangoContext, DjangoHTTPContext
from django_pyvows.settings_manager import settings_tracker, VowsSettings
2011-08-22 20:06:54 +00:00
DjangoContext.start_environment("sandbox.settings")
2011-08-22 20:06:54 +00:00
@Vows.batch
class SettingsVows(DjangoContext):
class WhenIUseTheSettingsTracker(DjangoContext):
2011-08-22 20:06:54 +00:00
def topic(self):
settings_tracker.install()
2012-03-09 17:02:27 +00:00
#class WhenImportFromDjangoConf(DjangoContext):
2012-03-09 17:02:27 +00:00
#def topic(self):
#from django.conf import settings
#return settings
2012-03-09 17:02:27 +00:00
#def should_be_the_vows_settings(self, topic):
#expect(topic).to_be_instance_of(VowsSettings)
2012-03-09 17:02:27 +00:00
#class WhenIImportOnlyConfAndThenUseSettings(DjangoContext):
2012-03-09 17:02:27 +00:00
#def topic(self):
#from django import conf
#return conf.settings
2011-08-22 20:06:54 +00:00
2012-03-09 17:02:27 +00:00
#def should_be_the_vows_settings(self, topic):
#expect(topic).to_be_instance_of(VowsSettings)
2011-08-22 20:06:54 +00:00
2012-03-09 17:02:27 +00:00
#class WhenIImportTheCompletePathAndThenUseSettings(DjangoContext):
2011-08-22 20:06:54 +00:00
2012-03-09 17:02:27 +00:00
#def topic(self):
#import django.conf
#return django.conf.settings
2011-08-22 20:06:54 +00:00
2012-03-09 17:02:27 +00:00
#def should_be_the_vows_settings(self, topic):
#expect(topic).to_be_instance_of(VowsSettings)
2011-08-22 20:06:54 +00:00
2012-03-09 17:02:27 +00:00
#class CannotSayHelloWithoutName(DjangoHTTPContext):
2011-08-22 20:06:54 +00:00
2012-03-09 17:02:27 +00:00
#def topic(self):
#self.settings.SAY_HELLO_WITHOUT_NAME = False
#self.start_server(port=9000)
#return self.get('/say/')
2011-08-22 20:06:54 +00:00
2012-03-09 17:02:27 +00:00
#def should_be_ok(self, (topic, content)):
#expect(topic.status).to_equal(200)
2011-08-22 20:06:54 +00:00
2012-03-09 17:02:27 +00:00
#def should_ask_for_my_name(self, (topic, content)):
#expect(content).to_equal("What's your name?")
2011-08-22 20:06:54 +00:00
class SayHelloWithoutName(DjangoHTTPContext):
def topic(self):
2012-03-09 17:02:27 +00:00
#self.settings.SAY_HELLO_WITHOUT_NAME = True
self.start_server(port=9001, settings={
'SAY_HELLO_WITHOUT_NAME': True
})
2011-08-22 20:06:54 +00:00
return self.get('/say/')
2012-03-08 18:57:32 +00:00
def should_be_ok(self, (topic, content)):
expect(topic.status).to_equal(200)
2011-08-22 20:06:54 +00:00
2012-03-08 18:57:32 +00:00
def should_(self, (topic, content)):
expect(content).to_equal("Hello, guess!")
2011-08-22 20:06:54 +00:00