File: only_run_given_scope_name.rb

package info (click to toggle)
ruby-cutest 1.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 176 kB
  • sloc: ruby: 376; makefile: 14
file content (15 lines) | stat: -rw-r--r-- 181 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
scope "another scope" do
  test do
    raise "This is not raised"
  end
end

scope "scope" do
  test "test" do
    assert true
  end

  test do
    raise "This is raised"
  end
end