DEBSOURCES
Skip Quicknav
sources / ruby-knapsack / 1.18.0-2 / test_examples / slow / slow_test.rb
123456789101112131415
require 'test_helper' class SlowTest < Minitest::Test def setup sleep 0.5 end def test_a sleep 0.5 end def test_b sleep 1.0 end end