python,django,webtest,django-webtest
You forgot to add module name between tests and AdvertiserView: ./manage.py test config.advertiser.tests.test_advertiser_web.AdvertiserView ...
After many hours of trying different things, I've found the solution which works for me, it was very simple work around. I used one of the proxy values in the PAC and setup IE to use it then in the advance options I added the URLs of the sites that...
doctrine2,phpunit,webtest,dbal
I never used in memory sqlite database but for testing i do use a sqlite database that is saved. For that you should add doctrine: dbal: default_connection: default connections: default: driver: pdo_sqlite path: %kernel.cache_dir%/test.db To your test config (for me config_test.yml) You should be able to change this to in...