20 lines
544 B
Ruby
20 lines
544 B
Ruby
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
|
|
|
describe "Homesick" do
|
|
before do
|
|
@homesick = Homesick.new
|
|
end
|
|
|
|
it "should clone any git repo" 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 a github repo" do
|
|
@homesick.should_receive(:git_clone).with('git://github.com/wfarr/dotfiles.git', 'wfarr_dotfiles')
|
|
|
|
@homesick.clone "wfarr/dotfiles"
|
|
end
|
|
end
|