Changeset 8759
- Timestamp:
- 01/31/08 04:55:21 (6 months ago)
- Files:
-
- tools/capistrano/CHANGELOG (modified) (1 diff)
- tools/capistrano/test/deploy/scm/git_test.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/capistrano/CHANGELOG
r8758 r8759 1 1 *SVN* 2 3 * Added test case to show that the :scm_command is honored by the git SCM module [grempe] 2 4 3 5 * Fail gracefully when double-colons are used to delimit namespaces [richie] tools/capistrano/test/deploy/scm/git_test.rb
r7695 r8759 57 57 @config[:branch] = "origin/foo" 58 58 assert_equal "cd #{dest} && git fetch origin && git merge origin/foo", @source.sync('Not used', dest) 59 60 # With :scm_command 61 @config[:scm_command] = "/opt/local/bin/git" 62 assert_equal "cd #{dest} && /opt/local/bin/git fetch origin && /opt/local/bin/git merge origin/foo", @source.sync('Not used', dest) 59 63 end 60 64