Mercurial > hg > soundsoftware-site
view plugins/redmine_checkout/spec/models/protocol_spec.rb @ 1136:51d7f3e06556 redmine-2.2-integration
Fix "uninitialized constant Redmine::Scm::Adapters::CommandFailed" (see https://www.chiliproject.org/projects/chiliproject/repository/revisions/cbcce704006c6827b4a3134a2dda9de7c47f18ae)
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 10 Jan 2013 11:01:47 +0000 |
parents | b4b72f1eb644 |
children |
line wrap: on
line source
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') describe Checkout::Protocol do fixtures :settings, :repositories, :projects, :enabled_modules before(:each) do @admin = User.new @admin.admin = true @user = User.new @repo = repositories :svn @repo.url = "http://example.com/svn/testrepo" end it "should use regexes for generated URL" do protocol = @repo.checkout_protocols.find{|r| r.protocol == "SVN+SSH"} protocol.url.should eql "svn+ssh://testrepo@svn.foo.bar/svn" end it "should resolve access properties" do protocol = @repo.checkout_protocols.find{|r| r.protocol == "Subversion"} protocol.access.should eql "permission" protocol.access_rw(@admin).should eql "read+write" User.current = @user protocol.access_rw(@user).should eql "read-only" end it "should display the checkout command" do subversion = @repo.checkout_protocols.find{|r| r.protocol == "Subversion"} svn_ssh = @repo.checkout_protocols.find{|r| r.protocol == "SVN+SSH"} subversion.command.should eql "svn checkout" svn_ssh.command.should eql "svn co" end end