Sha256: 8ed9b2e3eeefd1bac5003d1ba07aaec849300e88bb6692fd3382a9035c1cc6c6

Contents?: true

Size: 798 Bytes

Versions: 1

Compression:

Stored size: 798 Bytes

Contents

require_relative '../test_helper'

module OhlohScm::Adapters
	class BzrPullTest < Scm::Test

		def test_pull
			with_bzr_repository('bzr') do |src|
				Scm::ScratchDir.new do |dest_dir|

					dest = BzrAdapter.new(:url => dest_dir).normalize
					assert !dest.exist?

					dest.pull(src)
					assert dest.exist?

					assert_equal src.log, dest.log

					# Commit some new code on the original and pull again
					src.run "cd '#{src.url}' && touch foo && bzr add foo && bzr whoami 'test <test@example.com>' && bzr commit -m test"
					assert_equal "test", src.commits.last.message
					assert_equal "test", src.commits.last.committer_name
					assert_equal "test@example.com", src.commits.last.committer_email

					dest.pull(src)
					assert_equal src.log, dest.log
				end
			end
		end

	end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ohloh_scm-2.0.0 test/unit/bzr_pull_test.rb