Added three commands: show_path, status, diff

This commit is contained in:
David Simon
2013-06-25 16:11:08 -04:00
committed by thilko
parent d3cb45f879
commit 92c61f928e
3 changed files with 54 additions and 0 deletions

View File

@@ -201,6 +201,28 @@ describe 'homesick' do
end
end
describe 'status' do
xit 'needs testing'
end
describe 'diff' do
xit 'needs testing'
end
describe 'show_path' do
it 'should say the path of a castle' do
castle = given_castle('castle_repo')
homesick.should_receive(:say).with(castle.dirname)
homesick.show_path('castle_repo')
end
end
describe 'pull' do
xit 'needs testing'