Skip to content

Commit cbb9144

Browse files
committed
Remove utests for exposed parsing APIs that have been removed
1 parent 17322e4 commit cbb9144

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

utest/api/test_exposed_api.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,13 @@
22

33
from os.path import abspath, join
44

5-
from robot import api, model, parsing, reporting, result, running
5+
from robot import api, model, reporting, result, running
66

77
from robot.utils.asserts import assert_equal, assert_true
88

99

1010
class TestExposedApi(unittest.TestCase):
1111

12-
def test_test_case_file(self):
13-
assert_equal(api.TestCaseFile, parsing.TestCaseFile)
14-
15-
def test_test_data_directory(self):
16-
assert_equal(api.TestDataDirectory, parsing.TestDataDirectory)
17-
18-
def test_resource_file(self):
19-
assert_equal(api.ResourceFile, parsing.ResourceFile)
20-
21-
def test_test_data(self):
22-
assert_equal(api.TestData, parsing.TestData)
23-
2412
def test_execution_result(self):
2513
assert_equal(api.ExecutionResult, result.ExecutionResult)
2614

0 commit comments

Comments
 (0)