fixed broken spec

looks like the intent is to call pre in the context of build_command. Spec
wasn't expecting that though.
This commit is contained in:
Dane O'Connor 2011-06-26 23:03:37 -04:00
parent 344aa66641
commit 943b672bdc
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ describe Tmuxinator::ConfigWriter do
its(:project_root){ should eql '~/code/rails_project' }
its(:rvm){ should eql '1.9.2@rails_project' }
its(:tabs){ should be_an Array }
its(:pre){ should eql 'sudo /etc/rc.d/mysqld start' }
its(:pre){ should eql 'rvm use 1.9.2@rails_project && sudo /etc/rc.d/mysqld start' }
let(:first_tab){ subject.tabs[0] }