File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 15
15
TMUXP_DIR = os .path .join (os .path .dirname (__file__ ), '.tmuxp' )
16
16
17
17
18
-
19
18
class TmuxinatorTest (unittest .TestCase ):
20
19
21
20
tmuxinator_yaml = """\
@@ -181,6 +180,7 @@ class TmuxinatorDeprecationsTest(unittest.TestCase):
181
180
'session_name' : 'sample' ,
182
181
'socket_name' : 'foo' ,
183
182
'config' : '~/.tmux.mac.conf' ,
183
+ 'start_directory' : '~/test' ,
184
184
'shell_command_before' : [
185
185
'sudo /etc/rc.d/mysqld start' ,
186
186
'rbenv shell 2.0.0-p247'
@@ -264,8 +264,9 @@ def test_config_to_dict(self):
264
264
yaml_to_dict = test_config .get ()
265
265
self .assertDictEqual (yaml_to_dict , self .tmuxinator_dict )
266
266
267
- self .assertDictEqual (config .import_tmuxinator (
268
- self .tmuxinator_dict ), self .tmuxp_dict )
267
+ self .assertDictEqual (
268
+ config .import_tmuxinator (self .tmuxinator_dict ), self .tmuxp_dict
269
+ )
269
270
270
271
271
272
class TmuxinatoriSampleTest (unittest .TestCase ):
You can’t perform that action at this time.
0 commit comments