Sha256: 230eabfc4d706a37b6129e526d7a2a8d16bdf640c3766b18e864501ba68b3093

Contents?: true

Size: 1.81 KB

Versions: 30

Compression:

Stored size: 1.81 KB

Contents

#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../test_helper'

class TestInit < Test::Unit::TestCase
  def setup
    set_file_paths
  end

  def test_open_simple
    g = Git.open(@wdir)
    assert_equal(g.dir.path, @wdir)
    assert_equal(g.repo.path, File.join(@wdir, '.git'))
    assert_equal(g.index.path, File.join(@wdir, '.git', 'index'))
  end
    
  def test_open_opts 
    g = Git.open @wdir, :repository => @wbare, :index => @index
    assert_equal(g.repo.path, @wbare)
    assert_equal(g.index.path, @index)
  end
  
  def test_git_bare
    g = Git.bare @wbare
    assert_equal(g.repo.path, @wbare)
  end
  
  #g = Git.init
  #  Git.init('project')
  #  Git.init('/home/schacon/proj', 
  #		{ :git_dir => '/opt/git/proj.git', 
  #		  :index_file => '/tmp/index'} )
  def test_git_init
    in_temp_dir do |path|
      Git.init
      assert(File.directory?(File.join(path, '.git')))
      assert(File.exists?(File.join(path, '.git', 'config')))
    end
  end
  
  def test_git_init_remote_git
    in_temp_dir do |dir|
      assert(!File.exists?(File.join(dir, 'config')))
      
      in_temp_dir do |path|        
        Git.init(path, :repository => dir)
        assert(File.exists?(File.join(dir, 'config')))
      end
    end
  end
  
  def test_git_clone
    in_temp_dir do |path|      
      g = Git.clone(@wbare, 'bare-co')
      assert(File.exists?(File.join(g.repo.path, 'config')))
      assert(g.dir)
    end
  end
  
  def test_git_clone_bare
    in_temp_dir do |path|      
      g = Git.clone(@wbare, 'bare.git', :bare => true)
      assert(File.exists?(File.join(g.repo.path, 'config')))
      assert_nil(g.dir)
    end
  end
  
  # trying to open a git project using a bare repo - rather than using Git.repo
  def test_git_open_error
    assert_raise ArgumentError do
      g = Git.open @wbare
    end
  end
  
end

Version data entries

30 entries across 30 versions & 4 rubygems

Version Path
titanous-git-1.1.0 tests/units/test_init.rb
redcar-dev-0.12.1dev-java plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-dev-0.12.0dev-java plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.11 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.11.0dev plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.10 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.9.2 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.9.1 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.9.0 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.8.1 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.8 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.7 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.6.1 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.6 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.6.1dev plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.5.1 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.5 plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.5.6dev plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.5.5dev plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb
redcar-0.5.4dev plugins/scm_git/vendor/ruby-git/tests/units/test_init.rb