Skip to content

Commit

Permalink
Merge pull request #186 from kinverarity1/issue-84
Browse files Browse the repository at this point in the history
Issue 84
  • Loading branch information
kinverarity1 committed Nov 12, 2017
2 parents e1fcf28 + 93bec5e commit 84e400b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/examples/barebones.las
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#-----------------------------------------------------------------------------
~CURVE INFORMATION
#MNEM.UNIT API CODE DESCRIPTION
#---- ----- -------- -----------------------
DEPT .F :DEPTH (BOREHOLE) {F10.1}
#-----------------------------------------------------------------------------
#
# DEPT
#
~A
200.0
201.0
6 changes: 6 additions & 0 deletions tests/test_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,10 @@ def test_missing_null_missing_headeritem():
l = read(egfn("missing_null.las"))
assert not 'NULL' in l.well

def test_barebones():
las = read(egfn('barebones.las'))
assert las['DEPT'][1] == 201

# def test_barebones2():
# las = read(egfn('barebones.las'))
# assert las

0 comments on commit 84e400b

Please sign in to comment.