- Timestamp:
- Jun 3, 2010, 6:03:07 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/shallow_water/test_data_manager.py
r7772 r7776 2 2 # 3 3 4 # This file was reverted from changeset:5484 to changeset:5470 on 10th July 5 # by Ole. 4 """ 5 Set of tests for the now-defunct data manager module. 6 7 These could be split up into their correct modules. 8 """ 6 9 7 10 import unittest 8 11 import copy 9 12 import numpy as num 13 import sys 10 14 11 15 import tempfile … … 16 20 from Scientific.IO.NetCDF import NetCDFFile 17 21 22 18 23 from anuga.anuga_exceptions import ANUGAError 19 from anuga.shallow_water.data_manager import * 20 from anuga.shallow_water.sww_file import SWW_file 24 from anuga.file.sww import SWW_file 21 25 from anuga.coordinate_transforms.geo_reference import Geo_reference 22 26 from anuga.coordinate_transforms.redfearn import degminsec2decimal_degrees 23 27 from anuga.abstract_2d_finite_volumes.util import file_function 24 from anuga.utilities.system_tools import get_pathname_from_package 28 from anuga.utilities.system_tools import get_pathname_from_package, \ 29 get_revision_number 25 30 from anuga.utilities.file_utils import del_dir 26 31 from anuga.utilities.numerical_tools import ensure_numeric, mean … … 41 46 42 47 # This is needed to run the tests of local functions 43 import data_manager44 48 from anuga.file_conversion.urs2sts import urs2sts 45 49 from anuga.coordinate_transforms.redfearn import redfearn … … 47 51 DEFAULT_ZONE 48 52 from anuga.geospatial_data.geospatial_data import Geospatial_data 53 54 from shallow_water_domain import Domain 49 55 50 56 # use helper methods from other unit test
Note: See TracChangeset
for help on using the changeset viewer.