module GeneratorSpec::TestCase
def add_assertion; end
def add_assertion; end
def fake_test_case; end
def fake_test_case; end
def method_missing(method_sym, *arguments, &block)
def method_missing(method_sym, *arguments, &block) self.test_case_instance.send(method_sym, *arguments, &block) end
def respond_to?(method_sym, include_private = false)
def respond_to?(method_sym, include_private = false) if self.test_case_instance.respond_to?(method_sym) true else super end end