Method: Kintama::Context::ClassMethods#it
- Defined in:
- lib/kintama/context.rb
#it(name, &block) ⇒ Object
Define a test to run in this context. The test name will start with “it ”
200 201 202 |
# File 'lib/kintama/context.rb', line 200 def it(name, &block) test("it " + name, &block) end |