mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
472431004c
git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@6288 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
14 lines
349 B
Ruby
14 lines
349 B
Ruby
require "#{File.dirname(__FILE__)}/utils"
|
|
# if the following is uncommented, the capistrano gem gets loaded if it is
|
|
# installed, for some reason...not sure why :(
|
|
# require 'capistrano/configuration'
|
|
|
|
class ConfigurationTest < Test::Unit::TestCase
|
|
def setup
|
|
@config = Capistrano::Configuration.new
|
|
end
|
|
|
|
def test_flunk
|
|
flunk
|
|
end
|
|
end
|