Skip to content
Snippets Groups Projects
Commit 3df729e4 authored by Eric Davis's avatar Eric Davis
Browse files

Replace puts and !!! messages with pending tests when the test SCMs are missing

parent 7bce7f7b
No related merge requests found
Showing
with 21 additions and 27 deletions
......@@ -131,7 +131,6 @@ class RepositoriesBazaarControllerTest < ActionController::TestCase
:sibling => { :tag => 'td', :content => /Main purpose/ }
end
else
puts "Bazaar test repository NOT FOUND. Skipping functional tests !!!"
def test_fake; assert true end
should "Bazaar test repository not found."
end
end
......@@ -189,7 +189,6 @@ class RepositoriesCvsControllerTest < ActionController::TestCase
}
end
else
puts "CVS test repository NOT FOUND. Skipping functional tests !!!"
def test_fake; assert true end
should "CVS test repository not found."
end
end
......@@ -98,7 +98,6 @@ class RepositoriesDarcsControllerTest < ActionController::TestCase
:content => /def remove/ }
end
else
puts "Darcs test repository NOT FOUND. Skipping functional tests !!!"
def test_fake; assert true end
should "Darcs test repository not found."
end
end
......@@ -102,7 +102,6 @@ class RepositoriesFilesystemControllerTest < ActionController::TestCase
end
end
else
puts "Filesystem test repository NOT FOUND. Skipping functional tests !!!"
def test_fake; assert true end
should "Filesystem test repository not found."
end
end
......@@ -231,7 +231,6 @@ class RepositoriesGitControllerTest < ActionController::TestCase
end
end
else
puts "Git test repository NOT FOUND. Skipping functional tests !!!"
def test_fake; assert true end
should "Git test repository not found."
end
end
......@@ -362,7 +362,6 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
end
end
else
puts "Mercurial test repository NOT FOUND. Skipping functional tests !!!"
def test_fake; assert true end
should "Mercurial test repository not found."
end
end
......@@ -285,7 +285,7 @@ class RepositoriesSubversionControllerTest < ActionController::TestCase
assert_tag :tag => 'h2', :content => /@ 8/
end
else
puts "Subversion test repository NOT FOUND. Skipping functional tests !!!"
def test_fake; assert true end
should "Subversion test repository not found."
end
end
......@@ -55,7 +55,7 @@ begin
assert_equal version, @adapter.class.scm_command_version
end
else
puts "Bazaar test repository NOT FOUND. Skipping unit tests !!!"
should "Bazaar test repository NOT FOUND."
def test_fake; assert true end
end
end
......
......@@ -68,7 +68,7 @@ begin
assert_equal version, @adapter.class.scm_command_version
end
else
puts "Cvs test repository NOT FOUND. Skipping unit tests !!!"
should "CVS test repository not found."
def test_fake; assert true end
end
end
......
......@@ -54,7 +54,7 @@ begin
end
else
puts "Darcs test repository NOT FOUND. Skipping unit tests !!!"
should "Darcs test repository not found."
def test_fake; assert true end
end
end
......
......@@ -46,7 +46,7 @@ class FilesystemAdapterTest < ActiveSupport::TestCase
assert_equal "TEST CAT\n", @adapter.cat("/test", 1)
end
else
puts "Filesystem test repository NOT FOUND. Skipping unit tests !!! See doc/RUNNING_TESTS."
should "Filesystem test repository not found."
def test_fake; assert true end
end
end
......@@ -239,7 +239,7 @@ begin
end
else
puts "Git test repository NOT FOUND. Skipping unit tests !!!"
should "Git test repository not found."
def test_fake; assert true end
end
end
......
......@@ -353,7 +353,7 @@ begin
assert File.exist?(@adapter.class.template_path_for(version))
end
else
puts "Mercurial test repository NOT FOUND. Skipping unit tests !!!"
should "Mercurial test repository not found."
def test_fake; assert true end
end
end
......
......@@ -47,7 +47,7 @@ begin
end
else
puts "Subversion test repository NOT FOUND. Skipping unit tests !!!"
should "Subversion test repository not found."
def test_fake; assert true end
end
end
......
......@@ -96,7 +96,7 @@ class RepositoryBazaarTest < ActiveSupport::TestCase
assert_nil changeset.next
end
else
puts "Bazaar test repository NOT FOUND. Skipping unit tests !!!"
should "Bazaar test repository not found."
def test_fake; assert true end
end
end
......@@ -98,7 +98,7 @@ class RepositoryCvsTest < ActiveSupport::TestCase
assert_equal entries[2].lastrev.author, 'LANG'
end
else
puts "CVS test repository NOT FOUND. Skipping unit tests !!!"
should "CVS test repository not found."
def test_fake; assert true end
end
end
......@@ -65,7 +65,7 @@ class RepositoryDarcsTest < ActiveSupport::TestCase
end
end
else
puts "Darcs test repository NOT FOUND. Skipping unit tests !!!"
should "Darcs test repository not found."
def test_fake; assert true end
end
end
......@@ -45,7 +45,7 @@ class RepositoryFilesystemTest < ActiveSupport::TestCase
end
else
puts "Filesystem test repository NOT FOUND. Skipping unit tests !!! See doc/RUNNING_TESTS."
should "Filesystem test repository not found."
def test_fake; assert true end
end
end
......@@ -305,7 +305,7 @@ class RepositoryGitTest < ActiveSupport::TestCase
end
end
else
puts "Git test repository NOT FOUND. Skipping unit tests !!!"
should "Git test repository not found."
def test_fake; assert true end
end
end
......@@ -273,7 +273,7 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
end
end
else
puts "Mercurial test repository NOT FOUND. Skipping unit tests !!!"
should "Mercurial test repository not found."
def test_fake; assert true end
end
end
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment