Skip to content

Commit

Permalink
Add basic testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ladinesa committed Feb 16, 2024
1 parent 339a721 commit c8c351a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Empty file added tests/__init__.py
Empty file.
10 changes: 9 additions & 1 deletion tests/test_runschema.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from ..runschema.calculation import Calculation
from ..runschema.method import Method
from ..runschema.run import Run
from ..runschema.system import System


def test_schema():
pass
run = Run()
assert run.m_def.definition_id == 'fc17fdfdcba5aef2c02835a81ed65f95f314b687'
run.calculation.append(Calculation())
run.method.append(Method())
run.system.append(System())

0 comments on commit c8c351a

Please sign in to comment.