2014-04-14 14:58:59 +02:00
|
|
|
require 'simplecov'
|
|
|
|
|
|
|
|
module SimpleCov::Configuration
|
|
|
|
def clean_filters
|
|
|
|
@filters = []
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
SimpleCov.configure do
|
|
|
|
clean_filters
|
2014-04-14 20:52:16 +02:00
|
|
|
load_profile 'test_frameworks'
|
2014-04-14 14:58:59 +02:00
|
|
|
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
|
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
|
|
|
|
2014-07-29 17:33:11 +02:00
|
|
|
require 'salama'
|
2014-09-16 15:06:11 +02:00
|
|
|
|
2015-06-01 16:31:35 +02:00
|
|
|
module Virtual
|
|
|
|
# Functions to generate parfait objects
|
|
|
|
def self.new_word( string )
|
|
|
|
string = string.to_s if string.is_a? Symbol
|
|
|
|
word = Parfait::Word.new_object( string.length )
|
|
|
|
string.codepoints.each_with_index do |code , index |
|
|
|
|
word.set_char(index + 1 , code)
|
|
|
|
end
|
|
|
|
word
|
|
|
|
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
|