Module: Syskit::Test::Self::ClassExtension

Defined in:
lib/syskit/test/self.rb

Instance Method Summary collapse

Instance Method Details

#it(*args, &block) ⇒ Object



129
130
131
132
133
134
135
136
137
138
139
140
# File 'lib/syskit/test/self.rb', line 129

def it(*args, &block)
    super(*args) do
        begin
            instance_eval(&block)
        rescue Exception => e
            if e.class.name =~ /Syskit|Roby/
                pp e
            end
            raise
        end
    end
end