File: static_class_order.rb

package info (click to toggle)
ruby-maxitest 6.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 504 kB
  • sloc: ruby: 1,583; makefile: 7
file content (13 lines) | stat: -rw-r--r-- 201 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
require "./spec/cases/helper"
Maxitest.static_class_order = true
$calls = []

5.times do |i|
  describe rand do
    it { puts "#{i}" }

    describe rand do
      it { puts "#{i}n" }
    end
  end
end