class Thoughtbot::Shoulda::Context

def initialize(name, parent, &blk)

def initialize(name, parent, &blk)
  Shoulda.add_context(self)
  self.name               = name
  self.parent             = parent
  self.setup_blocks       = []
  self.teardown_blocks    = []
  self.shoulds            = []
  self.should_eventuallys = []
  self.subcontexts        = []
  merge_block(&blk)
  Shoulda.remove_context
end