Module: Roby::Test::DSL::InstanceExtension

Defined in:
lib/roby/test/dsl.rb

Instance Method Summary collapse

Instance Method Details

#appObject



136
137
138
# File 'lib/roby/test/dsl.rb', line 136

def app
    Roby.app
end

#runObject

Filters out the test suites that are not enabled by the current Roby configuration



142
143
144
145
146
147
148
149
150
151
152
# File 'lib/roby/test/dsl.rb', line 142

def run
    begin
        time_it do
            self.class.roby_should_run(self, app)
        end
    rescue Minitest::Skip
        return Minitest::Result.from(self)
    end

    super
end