File: test.rb

package info (click to toggle)
ruby-minitest-excludes 2.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 120 kB
  • sloc: ruby: 147; makefile: 6
file content (15 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'minitest/autorun'
require 'minitest/excludes'

class ATestCase < Minitest::Test
  def test_test1; assert true  end
  def test_test2; assert false end # oh noes!
  def test_test3; assert true  end

  class Nested < Minitest::Test
    def test_test1; assert true  end
    def test_test2; assert false end # oh noes!
    def test_test3; assert true  end
  end
end