aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2010-05-29 00:29:57 -0300
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2010-05-29 00:29:57 -0300
commit9f82601795bb7b2151eecdbaa65ec10e2a92d025 (patch)
treec3ec04952d137ce33f7351910a1b17e684049085 /tests/test_config.py
parentadded a fake tree of external files to be used by the tests. (diff)
downloadg-octave-9f82601795bb7b2151eecdbaa65ec10e2a92d025.tar.gz
g-octave-9f82601795bb7b2151eecdbaa65ec10e2a92d025.tar.bz2
g-octave-9f82601795bb7b2151eecdbaa65ec10e2a92d025.zip
moved auxiliary files from tests/ to tests/files. fixed modules g_octave.config and g_octave.description to
use the files in the new location
Diffstat (limited to 'tests/test_config.py')
-rw-r--r--tests/test_config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index 7c2cc26..33f50b9 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -25,14 +25,14 @@ class TestConfig(unittest.TestCase):
# object with the config file empty, should use the default values
self._empty_cfg = config.Config(
- config_file = os.path.join(current_dir, 'g-octave_empty.cfg'),
+ config_file = os.path.join(current_dir, 'files', 'g-octave_empty.cfg'),
create_dirs = False,
fetch_phase = True
)
# object with an example config file
self._cfg = config.Config(
- config_file = os.path.join(current_dir, 'g-octave.cfg'),
+ config_file = os.path.join(current_dir, 'files', 'g-octave.cfg'),
create_dirs = False,
fetch_phase = True
)