File: slow_test.rb

package info (click to toggle)
ruby-knapsack 1.18.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,084 kB
  • sloc: ruby: 2,832; makefile: 4; sh: 3
file content (15 lines) | stat: -rw-r--r-- 159 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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