@@ -58,6 +58,10 @@ def test_DebugInfo_NotInitialized( self, app ):
5858 'key' : 'Project Directory' ,
5959 'value' : None ,
6060 } ),
61+ has_entries ( {
62+ 'key' : 'Open Workspaces' ,
63+ 'value' : has_items ()
64+ } ),
6165 has_entries ( {
6266 'key' : 'Settings' ,
6367 'value' : '{}' ,
@@ -95,6 +99,10 @@ def test_DebugInfo_Initialized( self, app ):
9599 'key' : 'Project Directory' ,
96100 'value' : PathToTestFile (),
97101 } ),
102+ has_entries ( {
103+ 'key' : 'Open Workspaces' ,
104+ 'value' : has_items ()
105+ } ),
98106 has_entries ( {
99107 'key' : 'Settings' ,
100108 'value' : '{}' ,
@@ -134,6 +142,10 @@ def test_DebugInfo_ExtraConf_ReturningFlags( self, app ):
134142 'key' : 'Project Directory' ,
135143 'value' : PathToTestFile ( 'extra_conf' ),
136144 } ),
145+ has_entries ( {
146+ 'key' : 'Open Workspaces' ,
147+ 'value' : has_items ()
148+ } ),
137149 has_entries ( {
138150 'key' : 'Settings' ,
139151 'value' : '{}' ,
@@ -174,6 +186,10 @@ def test_DebugInfo_ExtraConf_NotReturningFlags( self, app ):
174186 'key' : 'Project Directory' ,
175187 'value' : PathToTestFile ( 'extra_conf' ),
176188 } ),
189+ has_entries ( {
190+ 'key' : 'Open Workspaces' ,
191+ 'value' : has_items ()
192+ } ),
177193 has_entries ( {
178194 'key' : 'Settings' ,
179195 'value' : '{}' ,
@@ -216,6 +232,10 @@ def test_DebugInfo_ExtraConf_Global( self, app ):
216232 'key' : 'Project Directory' ,
217233 'value' : PathToTestFile (),
218234 } ),
235+ has_entries ( {
236+ 'key' : 'Open Workspaces' ,
237+ 'value' : has_items ()
238+ } ),
219239 has_entries ( {
220240 'key' : 'Settings' ,
221241 'value' : '{}' ,
@@ -259,6 +279,10 @@ def test_DebugInfo_ExtraConf_LocalOverGlobal( self, app ):
259279 'key' : 'Project Directory' ,
260280 'value' : PathToTestFile ( 'extra_conf' ),
261281 } ),
282+ has_entries ( {
283+ 'key' : 'Open Workspaces' ,
284+ 'value' : has_items ()
285+ } ),
262286 has_entries ( {
263287 'key' : 'Settings' ,
264288 'value' : '{}' ,
@@ -308,6 +332,10 @@ def test_DebugInfo_ExtraConf_Database( self, app ):
308332 'key' : 'Project Directory' ,
309333 'value' : tmp_dir ,
310334 } ),
335+ has_entries ( {
336+ 'key' : 'Open Workspaces' ,
337+ 'value' : has_items ()
338+ } ),
311339 has_entries ( {
312340 'key' : 'Settings' ,
313341 'value' : '{}' ,
@@ -365,6 +393,10 @@ def Settings( **kwargs ):
365393 'key' : 'Project Directory' ,
366394 'value' : tmp_dir ,
367395 } ),
396+ has_entries ( {
397+ 'key' : 'Open Workspaces' ,
398+ 'value' : has_items ()
399+ } ),
368400 has_entries ( {
369401 'key' : 'Settings' ,
370402 'value' : '{}' ,
@@ -419,6 +451,10 @@ def test_DebugInfo_ExtraConf_UseDatabaseOverGlobal( self, app ):
419451 'key' : 'Project Directory' ,
420452 'value' : tmp_dir ,
421453 } ),
454+ has_entries ( {
455+ 'key' : 'Open Workspaces' ,
456+ 'value' : has_items ()
457+ } ),
422458 has_entries ( {
423459 'key' : 'Settings' ,
424460 'value' : '{}' ,
@@ -459,6 +495,10 @@ def test_DebugInfo_ExtraConf_MacIncludeFlags( self, app ):
459495 'key' : 'Project Directory' ,
460496 'value' : PathToTestFile ( 'extra_conf' ),
461497 } ),
498+ has_entries ( {
499+ 'key' : 'Open Workspaces' ,
500+ 'value' : has_items ()
501+ } ),
462502 has_entries ( {
463503 'key' : 'Settings' ,
464504 'value' : '{}' ,
0 commit comments