Added more clone specs.
This commit is contained in:
@@ -5,15 +5,29 @@ describe Homesick do
|
||||
@homesick = Homesick.new
|
||||
end
|
||||
|
||||
it "should clone any git repo" do
|
||||
describe "clone" do
|
||||
it "should clone git repo like git://host/path/to.git" do
|
||||
@homesick.should_receive(:git_clone).with('git://github.com/technicalpickles/pickled-vim.git')
|
||||
|
||||
@homesick.clone "git://github.com/technicalpickles/pickled-vim.git"
|
||||
end
|
||||
|
||||
it "should clone git repo like git@host:path/to.git" do
|
||||
@homesick.should_receive(:git_clone).with('git@github.com:technicalpickles/pickled-vim.git')
|
||||
|
||||
@homesick.clone 'git@github.com:technicalpickles/pickled-vim.git'
|
||||
end
|
||||
|
||||
it "should clone git repo like http://host/path/to.git" do
|
||||
@homesick.should_receive(:git_clone).with('http://github.com/technicalpickles/pickled-vim.git')
|
||||
|
||||
@homesick.clone 'http://github.com/technicalpickles/pickled-vim.git'
|
||||
end
|
||||
|
||||
it "should clone a github repo" do
|
||||
@homesick.should_receive(:git_clone).with('git://github.com/wfarr/dotfiles.git', :destination => 'wfarr_dotfiles')
|
||||
|
||||
@homesick.clone "wfarr/dotfiles"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user