22
22
import iso8601
23
23
24
24
import testtools
25
- from testtools .compat import _b
26
25
from testtools .content import text_content
27
26
from testtools .matchers import MatchesException
28
27
from testtools .tests .helpers import LoggingResult
42
41
class TestCommandLoad (ResourcedTestCase ):
43
42
44
43
def test_load_loads_subunit_stream_to_default_repository (self ):
45
- ui = UI ([('subunit' , _b ( '' ) )])
44
+ ui = UI ([('subunit' , b'' )])
46
45
cmd = load .load (ui )
47
46
ui .set_command (cmd )
48
47
calls = []
@@ -61,7 +60,7 @@ def test_load_loads_subunit_stream_to_default_repository(self):
61
60
def test_load_loads_named_file_if_given (self ):
62
61
datafile = NamedTemporaryFile ()
63
62
self .addCleanup (datafile .close )
64
- ui = UI ([('subunit' , _b ( '' ) )], args = [datafile .name ])
63
+ ui = UI ([('subunit' , b'' )], args = [datafile .name ])
65
64
cmd = load .load (ui )
66
65
ui .set_command (cmd )
67
66
calls = []
@@ -80,7 +79,7 @@ def test_load_loads_named_file_if_given(self):
80
79
self .assertEqual (1 , repo .count ())
81
80
82
81
def test_load_initialises_repo_if_doesnt_exist_and_init_forced (self ):
83
- ui = UI ([('subunit' , _b ( '' ) )], options = [('force_init' , True )])
82
+ ui = UI ([('subunit' , b'' )], options = [('force_init' , True )])
84
83
cmd = load .load (ui )
85
84
ui .set_command (cmd )
86
85
calls = []
@@ -91,7 +90,7 @@ def test_load_initialises_repo_if_doesnt_exist_and_init_forced(self):
91
90
self .assertEqual ([('open' , ui .here ), ('initialise' , ui .here )], calls )
92
91
93
92
def test_load_errors_if_repo_doesnt_exist (self ):
94
- ui = UI ([('subunit' , _b ( '' ) )])
93
+ ui = UI ([('subunit' , b'' )])
95
94
cmd = load .load (ui )
96
95
ui .set_command (cmd )
97
96
calls = []
@@ -105,7 +104,7 @@ def test_load_errors_if_repo_doesnt_exist(self):
105
104
ui .outputs [0 ][1 ], MatchesException (RepositoryNotFound ('memory:' )))
106
105
107
106
def test_load_returns_0_normally (self ):
108
- ui = UI ([('subunit' , _b ( '' ) )])
107
+ ui = UI ([('subunit' , b'' )])
109
108
cmd = load .load (ui )
110
109
ui .set_command (cmd )
111
110
cmd .repository_factory = memory .RepositoryFactory ()
@@ -190,7 +189,7 @@ def test_load_new_shows_test_skips(self):
190
189
ui .outputs )
191
190
192
191
def test_load_new_shows_test_summary_no_tests (self ):
193
- ui = UI ([('subunit' , _b ( '' ) )])
192
+ ui = UI ([('subunit' , b'' )])
194
193
cmd = load .load (ui )
195
194
ui .set_command (cmd )
196
195
cmd .repository_factory = memory .RepositoryFactory ()
@@ -202,7 +201,7 @@ def test_load_new_shows_test_summary_no_tests(self):
202
201
ui .outputs )
203
202
204
203
def test_load_quiet_shows_nothing (self ):
205
- ui = UI ([('subunit' , _b ( '' ) )], [('quiet' , True )])
204
+ ui = UI ([('subunit' , b'' )], [('quiet' , True )])
206
205
cmd = load .load (ui )
207
206
ui .set_command (cmd )
208
207
cmd .repository_factory = memory .RepositoryFactory ()
@@ -225,7 +224,7 @@ def test_load_abort_over_interactive_stream(self):
225
224
self .assertEqual (1 , ret )
226
225
227
226
def test_partial_passed_to_repo (self ):
228
- ui = UI ([('subunit' , _b ( '' ) )], [('quiet' , True ), ('partial' , True )])
227
+ ui = UI ([('subunit' , b'' )], [('quiet' , True ), ('partial' , True )])
229
228
cmd = load .load (ui )
230
229
ui .set_command (cmd )
231
230
cmd .repository_factory = memory .RepositoryFactory ()
0 commit comments