Sha256: be6e0692fd7a41d9844765877a1bf94cf33f02a63db78c24a176f9b8791fe43f

Contents?: true

Size: 888 Bytes

Versions: 1

Compression:

Stored size: 888 Bytes

Contents

require "simplecov"
SimpleCov.add_filter "spec"
SimpleCov.add_filter "config"
SimpleCov.command_name "MiniTest"
SimpleCov.start

ENV["RAILS_ENV"] = "test"
require File.expand_path('../../config/environment', __FILE__)

require "minitest/autorun"
require "minitest/rails"

# Uncomment if you want Capybara in accceptance/integration tests
# require "minitest/rails/capybara"

# Uncomment if you want awesome colorful output
require "minitest/pride"

# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir[File.join("./spec/support/**/*.rb")].sort.each { |f| require f }

class MiniTest::Rails::ActiveSupport::TestCase
  # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
  # fixtures :all

  # Add more helper methods to be used by all tests here...
end

MiniTest::Rails.override_testunit!

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thincloud-test-0.1.2 lib/generators/thincloud/test/templates/spec_helper.rb