2014-04-14 14:58:59 +02:00
|
|
|
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
|
2015-07-18 12:06:42 +02:00
|
|
|
if ENV['CODECLIMATE_REPO_TOKEN']
|
2016-12-06 14:22:22 +01:00
|
|
|
require 'simplecov'
|
2016-12-30 10:59:38 +01:00
|
|
|
SimpleCov.start { add_filter "/test/" }
|
2015-07-18 12:06:42 +02:00
|
|
|
end
|
|
|
|
|
2017-01-04 20:31:03 +01:00
|
|
|
require "minitest/color"
|
2014-04-14 20:52:16 +02:00
|
|
|
require "minitest/autorun"
|
2014-04-14 14:58:59 +02:00
|
|
|
|
|
|
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
2014-04-14 20:52:16 +02:00
|
|
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'test'))
|
2014-04-14 14:58:59 +02:00
|
|
|
|
2016-12-08 19:13:08 +01:00
|
|
|
require 'salama'
|
2015-06-01 16:31:35 +02:00
|
|
|
|
2016-12-16 23:15:27 +01:00
|
|
|
module Compiling
|
|
|
|
def clean_compile(clazz_name , method_name , args , statements)
|
2016-12-18 13:15:19 +01:00
|
|
|
compiler = Typed::MethodCompiler.new.create_method(clazz_name,method_name,args ).init_method
|
2016-12-16 23:15:27 +01:00
|
|
|
compiler.process( Typed.ast_to_code( statements ) )
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2015-05-24 17:05:20 +02:00
|
|
|
class Ignored
|
2014-09-16 15:06:11 +02:00
|
|
|
def == other
|
2015-05-24 17:05:20 +02:00
|
|
|
return false unless other.class == self.class
|
2014-09-16 15:06:11 +02:00
|
|
|
Sof::Util.attributes(self).each do |a|
|
|
|
|
begin
|
|
|
|
left = send(a)
|
|
|
|
rescue NoMethodError
|
|
|
|
next # not using instance variables that are not defined as attr_readers for equality
|
|
|
|
end
|
|
|
|
begin
|
|
|
|
right = other.send(a)
|
|
|
|
rescue NoMethodError
|
|
|
|
return false
|
|
|
|
end
|
2015-05-24 17:05:20 +02:00
|
|
|
return false unless left.class == right.class
|
2014-09-16 15:06:11 +02:00
|
|
|
return false unless left == right
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|