Ignore:
Timestamp:
Jun 1, 2007, 4:39:17 PM (17 years ago)
Author:
duncan
Message:

ticket#169

File:
1 edited

Legend:

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

    r4520 r4526  
    16331633        os.remove(ascfile)
    16341634        os.remove(swwfile)
     1635
     1636    def test_export_grid_bad(self):
     1637        """Test that sww information can be converted correctly to asc/prj
     1638        format readable by e.g. ArcView
     1639        """
     1640
     1641        try:
     1642            export_grid('a_small_round-egg',
     1643                        quantities = ['elevation', 'depth'],
     1644                        cellsize = 99,
     1645                        verbose = self.verbose,
     1646                        format = 'asc')
     1647        except IOError:
     1648            pass
     1649        else:
     1650            self.failUnless(0 ==1,  'Bad input did not throw exception error!')
    16351651
    16361652    def test_export_grid_parallel(self):
Note: See TracChangeset for help on using the changeset viewer.