Skip to content

Commit

Permalink
Moving the test project: /tests/ => /test_project/
Browse files Browse the repository at this point in the history
Using a more descriptive name for the directory containing the test
project. Thanks for the suggestion, @pydanny!
  • Loading branch information
noahsilas committed Sep 3, 2011
1 parent 1328a69 commit 6f51cd0
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Running the tests
-----------------
Django-Autocache has a sample django application that tests the caching
machinery. To run tests, start by cloning the autocache repository and
entering the `tests` directory.
entering the `test_project` directory.

The tests run using memcached and pylibmc. You can change the backend by
editing `autocache/tests/settings.py`. (TODO: get the test suite to run
Expand All @@ -52,7 +52,7 @@ multiple times with different backends)
- Start two memcached servers (testing multicache)
- `memcached -p 11211 -U 0`
- `memcached -p 11212 -U 0`
- Change into the `autocache/tests/` directory and run `manage.py test`
- Change into the `autocache/test_project/` directory and run `manage.py test`

Thanks
------
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions tests/settings.py → test_project/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
# Make this unique, and don't share it with anybody.
SECRET_KEY = '))&_fn7otvb(o(t$1#dt+&0$drsyo%h+h-*7#5bo*1y5-zmlob'

ROOT_URLCONF = 'tests.urls'
ROOT_URLCONF = 'test_project.urls'

INSTALLED_APPS = (
'tests.sample_app',
'test_project.sample_app',
)


Expand Down
File renamed without changes.

0 comments on commit 6f51cd0

Please sign in to comment.