jeweler generates its things
This commit is contained in:
35
test/helper.rb
Normal file
35
test/helper.rb
Normal file
@ -0,0 +1,35 @@
|
||||
require 'simplecov'
|
||||
|
||||
module SimpleCov::Configuration
|
||||
def clean_filters
|
||||
@filters = []
|
||||
end
|
||||
end
|
||||
|
||||
SimpleCov.configure do
|
||||
clean_filters
|
||||
load_adapter 'test_frameworks'
|
||||
end
|
||||
|
||||
ENV["COVERAGE"] && SimpleCov.start do
|
||||
add_filter "/.rvm/"
|
||||
end
|
||||
require 'rubygems'
|
||||
require 'bundler'
|
||||
begin
|
||||
Bundler.setup(:default, :development)
|
||||
rescue Bundler::BundlerError => e
|
||||
$stderr.puts e.message
|
||||
$stderr.puts "Run `bundle install` to install missing gems"
|
||||
exit e.status_code
|
||||
end
|
||||
require 'minitest/unit'
|
||||
|
||||
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
||||
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
require 'crystal'
|
||||
|
||||
class MiniTest::Unit::TestCase
|
||||
end
|
||||
|
||||
MiniTest::Unit.autorun
|
7
test/test_crystal.rb
Normal file
7
test/test_crystal.rb
Normal file
@ -0,0 +1,7 @@
|
||||
require 'helper'
|
||||
|
||||
class TestCrystal < MiniTest::Unit::TestCase
|
||||
def test_something_for_real
|
||||
flunk "hey buddy, you should probably rename this file and start testing for real"
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user