Skip to content

Commit

Permalink
Add unit tests and changed version to 0.0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ibaris committed Mar 24, 2018
1 parent 08ad8f7 commit 4a9cd0e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
author = u'Ismail Baris'

# The short X.Y version
version = u'0.0.1.1'
version = u'0.0.2.1'
# The full version, including alpha/beta/rc tags
release = u'20.03.2018'

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_packages():

setup(name='pyrism',

version='0.0.2.0',
version='0.0.2.1',

description='Python bindings for Remote Sensing Models',

Expand Down
6 changes: 3 additions & 3 deletions tests/test_auxil.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@


class TestResultClass:
def reflectance(self):
def test_reflectance(self):
test = ReflectanceResult(a=1, b=2)
assert test.a == 1
assert test.b == 2

def emissivity(self):
def test_emissivity(self):
test = EmissivityResult(a=1, b=2)
assert test.a == 1
assert test.b == 2

def sail(self):
def test_sail(self):
test = SailResult(a=1, b=2)
assert test.a == 1
assert test.b == 2
Expand Down

0 comments on commit 4a9cd0e

Please sign in to comment.