Skip to content

Commit 28adc18

Browse files
author
deathaxe
committed
Reorganize tests
1 parent 384ce68 commit 28adc18

4 files changed

+20
-22
lines changed

tests/test_3141596.py

-22
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
from unittest import skipIf
88
from unittesting import AWAIT_WORKER
99
from unittesting import DeferrableTestCase
10-
from unittesting.helpers import TempDirectoryTestCase
11-
from unittesting.helpers import ViewTestCase
1210
from unittesting.utils import isiterable
1311

1412
BASEDIR = os.path.dirname(os.path.abspath(__file__))
@@ -199,23 +197,3 @@ def test_fail_color_scheme(self, txt):
199197
@with_package("_ColorScheme_Success", color_scheme_test=True)
200198
def test_success_color_scheme(self, txt):
201199
self.assertOk(txt)
202-
203-
204-
def tidy_path(path):
205-
return os.path.realpath(os.path.normcase(path))
206-
207-
208-
class TestTempDirectoryTestCase(TempDirectoryTestCase):
209-
210-
def test_temp_dir(self):
211-
self.assertTrue(
212-
tidy_path(self._temp_dir),
213-
tidy_path(self.window.folders()[0])
214-
)
215-
216-
217-
class TestViewTestCase(ViewTestCase):
218-
219-
def test_view(self):
220-
self.assertIsInstance(self.view, sublime.View)
221-
self.assertTrue(self.view.is_valid())

tests/test_deferrable_view_test_case.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import sublime
2+
23
from unittesting import DeferrableViewTestCase
34

45

@@ -9,6 +10,7 @@ def test_window_object(self):
910

1011
def test_view_object(self):
1112
self.assertIsInstance(self.view, sublime.View)
13+
self.assertTrue(self.view.is_valid())
1214

1315
def test_view_settings(self):
1416
for key, value in self.view_settings.items():

tests/test_directory_test_case.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import os
2+
3+
from unittesting import TempDirectoryTestCase
4+
5+
6+
def tidy_path(path):
7+
return os.path.realpath(os.path.normcase(path))
8+
9+
10+
class TestTempDirectoryTestCase(TempDirectoryTestCase):
11+
12+
def test_temp_dir(self):
13+
self.assertTrue(
14+
tidy_path(self._temp_dir),
15+
tidy_path(self.window.folders()[0])
16+
)

tests/test_view_test_case.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import sublime
2+
23
from unittesting import ViewTestCase
34

45

@@ -9,6 +10,7 @@ def test_window_object(self):
910

1011
def test_view_object(self):
1112
self.assertIsInstance(self.view, sublime.View)
13+
self.assertTrue(self.view.is_valid())
1214

1315
def test_view_settings(self):
1416
for key, value in self.view_settings.items():

0 commit comments

Comments
 (0)