summaryrefslogtreecommitdiffstats
path: root/tests/units/test_git_path.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units/test_git_path.rb')
-rw-r--r--tests/units/test_git_path.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/units/test_git_path.rb b/tests/units/test_git_path.rb
new file mode 100644
index 0000000..c136abb
--- /dev/null
+++ b/tests/units/test_git_path.rb
@@ -0,0 +1,29 @@
+#!/usr/bin/env ruby
+
+require File.dirname(__FILE__) + '/../test_helper'
+
+class TestGitPath < Test::Unit::TestCase
+
+ def setup
+ set_file_paths
+ @git = Git.open(@wdir)
+ end
+
+ def test_readables
+ assert(@git.dir.readable?)
+ assert(@git.index.readable?)
+ assert(@git.repo.readable?)
+ end
+
+ def test_readables
+ in_temp_dir do |dir|
+ FileUtils.cp_r(@wdir, 'test')
+ g = Git.open(File.join(dir, 'test'))
+
+ assert(g.dir.writable?)
+ assert(g.index.writable?)
+ assert(g.repo.writable?)
+ end
+ end
+
+end \ No newline at end of file