Ignore:
Timestamp:
Jun 3, 2010, 6:03:07 PM (14 years ago)
Author:
hudson
Message:

Removed redundant data_manager class. Unit tests are running, but may fail.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/shallow_water/test_data_manager.py

    r7772 r7776  
    22#
    33
    4 # This file was reverted from changeset:5484 to changeset:5470 on 10th July
    5 # by Ole.
     4"""
     5Set of tests for the now-defunct data manager module.
     6
     7These could be split up into their correct modules.
     8"""
    69
    710import unittest
    811import copy
    912import numpy as num
     13import sys
    1014               
    1115import tempfile
     
    1620from Scientific.IO.NetCDF import NetCDFFile
    1721
     22
    1823from anuga.anuga_exceptions import ANUGAError
    19 from anuga.shallow_water.data_manager import *
    20 from anuga.shallow_water.sww_file import SWW_file
     24from anuga.file.sww import SWW_file
    2125from anuga.coordinate_transforms.geo_reference import Geo_reference                       
    2226from anuga.coordinate_transforms.redfearn import degminsec2decimal_degrees
    2327from anuga.abstract_2d_finite_volumes.util import file_function
    24 from anuga.utilities.system_tools import get_pathname_from_package
     28from anuga.utilities.system_tools import get_pathname_from_package, \
     29                                            get_revision_number
    2530from anuga.utilities.file_utils import del_dir
    2631from anuga.utilities.numerical_tools import ensure_numeric, mean
     
    4146
    4247# This is needed to run the tests of local functions
    43 import data_manager
    4448from anuga.file_conversion.urs2sts import urs2sts
    4549from anuga.coordinate_transforms.redfearn import redfearn
     
    4751     DEFAULT_ZONE
    4852from anuga.geospatial_data.geospatial_data import Geospatial_data
     53
     54from shallow_water_domain import Domain
    4955
    5056# use helper methods from other unit test
Note: See TracChangeset for help on using the changeset viewer.