Shuffled specs around.

This commit is contained in:
Joshua Nichols
2010-04-01 20:14:29 -04:00
parent 34ef4a4659
commit c5f8563f71
2 changed files with 4 additions and 4 deletions

View File

@@ -12,5 +12,5 @@ group :development do
gem "bundler", ">= 0.9.5"
gem "jeweler", ">= 1.4.0"
gem "rcov", ">= 0"
gem "devver-construct"
gem "test-construct"
end

View File

@@ -1,6 +1,6 @@
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
require 'spec_helper'
describe "Homesick" do
describe Homesick do
before do
@homesick = Homesick.new
end
@@ -12,7 +12,7 @@ describe "Homesick" do
end
it "should clone a github repo" do
@homesick.should_receive(:git_clone).with('git://github.com/wfarr/dotfiles.git', 'wfarr_dotfiles')
@homesick.should_receive(:git_clone).with('git://github.com/wfarr/dotfiles.git', :destination => 'wfarr_dotfiles')
@homesick.clone "wfarr/dotfiles"
end