Skip to content

Commit 0f5c180

Browse files
authored
Update test_d3plot_header.py
remove skipping of test add warning about no behavior testing
1 parent c5a44d5 commit 0f5c180

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/unit_tests/dyna/test_d3plot_header.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from unittest import TestCase
22

33
import numpy as np
4+
import warnings
45
import pytest
56
from lasso.dyna.d3plot_header import (
67
D3plotFiletype,
@@ -13,7 +14,6 @@
1314

1415
class D3plotHeaderTest(TestCase):
1516

16-
@pytest.mark.skip(reason="NOT IMPLEMENTED")
1717
def test_loading(self):
1818

1919
filepaths = [
@@ -27,6 +27,7 @@ def test_loading(self):
2727
D3plotHeader().load_file(filepath)
2828

2929
# TODO more
30+
warnings.warn("No assertions of behavior, test is incomplete")
3031

3132
def test_get_digit(self) -> None:
3233

0 commit comments

Comments
 (0)