Initial commit to crystal-reader.

This commit is contained in:
Torsten Ruger
2014-06-04 19:31:25 +03:00
commit 15aebb166b
9 changed files with 199 additions and 0 deletions

34
test/helper.rb Normal file
View File

@ -0,0 +1,34 @@
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 'test/unit'
require 'shoulda'
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'crystal-reader'
class Test::Unit::TestCase
end

View File

@ -0,0 +1,7 @@
require 'helper'
class TestCrystalReader < Test::Unit::TestCase
should "probably rename this file and start testing for real" do
flunk "hey buddy, you should probably rename this file and start testing for real"
end
end