Completed
Push — master ( b471d7...919dfb )
by Stefan
04:36
created

test_level2   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 24
rs 10
c 0
b 0
f 0
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A test_module_structure() 0 7 1
1
# -*- coding: utf-8 -*-
2
# vim:fileencoding=utf-8
3
#
4
# Copyright (c) 2018 Stefan Bender
5
#
6
# This module is part of sciapy.
7
# sciapy is free software: you can redistribute it or modify
8
# it under the terms of the GNU General Public License as published
9
# by the Free Software Foundation, version 2.
10
# See accompanying LICENSE file or http://www.gnu.org/licenses/gpl-2.0.html.
11
"""SCIAMACHY level 2 tests
12
"""
13
14
import sciapy.level2
15
16
17
def test_module_structure():
18
	assert sciapy.level2
19
	assert sciapy.level2.binning
20
	assert sciapy.level2.binning.bin_lat_timeavg
21
	assert sciapy.level2.nrlmsise00
22
	assert sciapy.level2.nrlmsise00.gtd7
23
	assert sciapy.level2.nrlmsise00.gtd7d
24