renamed python pkg sunbeam -> opm.

setup.py: test_suite -> tests_suite .

libsunbeam -> libopmcommon_python.

sunbeam -> opm: test_connection ok.

test_deck ok.

test_group_tree ok.

test_grupnet ok.

test_parse_deck.py ok.

test_parse.py ok.

python all tests ok.
This commit is contained in:
Steinar Foss
2019-08-12 08:36:00 +02:00
parent c40eed027b
commit e25416c236
24 changed files with 86 additions and 86 deletions

View File

@@ -1,12 +1,12 @@
import sys
import unittest
import sunbeam
import opm
class TestGroupTree(unittest.TestCase):
def setUp(self):
norne = 'examples/data/norne/NORNE_ATW2013.DATA'
self.sch = sunbeam.parse(norne, [('PARSE_RANDOM_SLASH', sunbeam.action.ignore)]).schedule
self.sch = opm.parse(norne, [('PARSE_RANDOM_SLASH', opm.action.ignore)]).schedule
def test_group(self):
gr = self.sch.group(timestep=2)['PROD']
@@ -35,7 +35,7 @@ class TestGroupTree(unittest.TestCase):
group = self.sch.group(timestep=3)['PROD']
children = ['MANI-B1', 'MANI-B2', 'MANI-D1', 'MANI-D2', 'MANI-E1', 'MANI-E2']
names = [child.name for child in group.children]
self.assertEqual(sunbeam.schedule.Group, type(child))
self.assertEqual(opm.schedule.Group, type(child))
self.assertEqual(set(children), set(names))
if __name__ == '__main__':