Method: Filet::TestCase.background

Defined in:
lib/filet/test_case.rb

.background(&block) ⇒ Object



21
22
23
24
25
26
# File 'lib/filet/test_case.rb', line 21

def background(&block)
  define_method(:setup) do
    super()
    instance_eval(&block)
  end
end