@@ -42,7 +42,7 @@ class TwoPaneTest(TmuxTestCase):
42
42
window_name: editor
43
43
- panes:
44
44
- shell_command:
45
- - tail -F /var/log/syslog
45
+ - tail | echo 'hi'
46
46
window_name: logging
47
47
- window_name: test
48
48
panes:
@@ -123,7 +123,7 @@ class FocusAndPaneIndexTest(TmuxTestCase):
123
123
- shell_command:
124
124
- cd ~
125
125
- shell_command:
126
- - cd /var
126
+ - cd /usr
127
127
focus: true
128
128
- shell_command:
129
129
- cd ~
@@ -176,7 +176,7 @@ def test_split_windows(self):
176
176
177
177
self .assertNotEqual (w .get ('window_name' ), 'man' )
178
178
179
- pane_path = '/var '
179
+ pane_path = '/usr '
180
180
for i in range (60 ):
181
181
p = w .attached_pane ()
182
182
p .server ._update_panes ()
@@ -334,10 +334,10 @@ def test_blank_pane_count(self):
334
334
class StartDirectoryTest (TmuxTestCase ):
335
335
yaml_config = """
336
336
session_name: sampleconfig
337
- start_directory: '/var '
337
+ start_directory: '/usr '
338
338
windows:
339
- - window_name: supposed to be /var/log
340
- start_directory: '/var/log '
339
+ - window_name: supposed to be /usr/bin
340
+ start_directory: '/usr/bin '
341
341
layout: main-horizontal
342
342
options:
343
343
main-pane-height: 50
@@ -388,7 +388,7 @@ def test_start_directory(self):
388
388
builder .build (session = self .session )
389
389
390
390
assert (self .session == builder .session )
391
- for path in ['/var/log ' , '/dev/' , '/var /' , os .getcwd ()]:
391
+ for path in ['/usr/bin ' , '/dev/' , '/usr /' , os .getcwd ()]:
392
392
for window in self .session .windows :
393
393
for p in window .panes :
394
394
self .assertTrue (p .get ('pane_start_path' , path ))
@@ -410,8 +410,8 @@ class PaneOrderingTest(TmuxTestCase):
410
410
- automatic_rename: on
411
411
layout: tiled
412
412
panes:
413
- - cd /var/log
414
- - cd /sys
413
+ - cd /usr/bin
414
+ - cd /usr
415
415
- cd /sbin
416
416
- cd /tmp
417
417
"""
@@ -420,8 +420,8 @@ def test_pane_order(self):
420
420
421
421
# test order of `panes` (and pane_index) above aganist pane_dirs
422
422
pane_paths = [
423
- '/var/log ' ,
424
- '/sys ' ,
423
+ '/usr/bin ' ,
424
+ '/usr ' ,
425
425
'/sbin' ,
426
426
'/tmp'
427
427
]
0 commit comments