# (at your option) any later version.
#
# Iris is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Iris.  If not, see <http://www.gnu.org/licenses/>.


# Import Iris tests first so that some things can be initialised before
# importing anything else.
import iris.tests as tests

import extest_util

with extest_util.add_examples_to_path():
    import atlantic_profiles


class TestAtlanticProfiles(tests.GraphicsTest):
    """Test the atlantic_profiles example code."""
    def test_atlantic_profiles(self):
        with extest_util.show_replaced_by_check_graphic(self, tol=0.0014):
            atlantic_profiles.main()


if __name__ == '__main__':
    tests.main()
Exemplo n.º 2
0
# Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Iris is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Iris.  If not, see <http://www.gnu.org/licenses/>.

# Import Iris tests first so that some things can be initialised before
# importing anything else.
import iris.tests as tests

import extest_util

with extest_util.add_examples_to_path():
    import atlantic_profiles


class TestAtlanticProfiles(tests.GraphicsTest):
    """Test the atlantic_profiles example code."""
    def test_atlantic_profiles(self):
        with extest_util.show_replaced_by_check_graphic(self, tol=0.0014):
            atlantic_profiles.main()


if __name__ == '__main__':
    tests.main()