1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/test/configuration_test.rb
2007-03-02 17:15:11 +00:00

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