Sha256: 16be1cdee9d8af13416b3511bf8e5292023760c13e2274dca73fd4ac18b8efd7

Contents?: true

Size: 921 Bytes

Versions: 6

Compression:

Stored size: 921 Bytes

Contents

# Let's include the eycap gem.
# FIXME: when you uncomment the require to bring in eycap it starts to error:
#
# capistrano/lib/capistrano/configuration/loading.rb:18:
# in `instance': Please require this file from within a Capistrano recipe (LoadError)
#
# require File.dirname(__FILE__) + '/../lib/eycap'

# This is a short and sweet way to bootstrap minitest.
# It also lets them keep it under a "service" if they want to make changes to
# the <tt>autorun</tt> method.
# https://github.com/seattlerb/minitest/blob/master/lib/minitest/autorun.rb

require 'rubygems'
require 'bundler/setup'

require 'minitest/autorun'

# This library has assertions and expectations already written that can help
# to test capistrano recipes.
require 'minitest-capistrano'

# Let's add capistrano, since that's what we need to deploy.
require 'capistrano'

# Load a default fixture capistrano object.
require 'fixtures/recipes/default'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
eycap-0.6.12 test/minitest_helper.rb
eycap-0.6.11 test/minitest_helper.rb
eycap-0.6.10 test/minitest_helper.rb
eycap-0.6.9 test/minitest_helper.rb
eycap-0.6.8 test/minitest_helper.rb
eycap-0.6.7 test/minitest_helper.rb