module ActiveSupport::Testing::Declarative
def test(name, &block)
...
test "verify something" do
spaces with underscores and defines the test method.
Helper to define a test method using a String. Under the hood, it replaces
def test(name, &block) test_name = "test_#{name.gsub(/\s+/, '_')}".to_sym defined = method_defined? test_name raise "#{test_name} is already defined in #{self}" if defined if block_given? define_method(test_name, &block) else define_method(test_name) do flunk "No implementation provided for #{name}" end end end