method
describe
v1_9_3_392 -
Show latest stable
-
0 notes -
Class: Kernel
- 1_8_6_287
- 1_8_7_72
- 1_8_7_330
- 1_9_1_378
- 1_9_2_180
- 1_9_3_125 (0)
- 1_9_3_392 (0)
- 2_1_10 (0)
- 2_2_9
- 2_4_6
- 2_5_5
- 2_6_3
- What's this?
describe(desc, additional_desc = nil, &block)
private
Describe a series of expectations for a given target desc.
TODO: find good tutorial url.
Defines a test class subclassing from either MiniTest::Spec or from the surrounding describe’s class. The surrounding class may subclass MiniTest::Spec manually in order to easily share code:
class MySpec < MiniTest::Spec # ... shared code ... end class TestStuff < MySpec it "does stuff" do # shared code available here end describe "inner stuff" do it "still does stuff" do # ...and here end end end