public function test_parse_list_from_blob_run_together_numeric_bullets_and_text()
 {
     $str = "1. Preheat oven to 350° F. Line muffin tins with 12 foil cupcake papers. Place a vanilla wafer in the bottom of each cupcake paper.2. In mixing bowl, beat cream cheese and fat-free cream cheese until smooth. Add sugar and vanilla and mix well. Add eggs and beat until smooth.3. Pour cheesecake mixture into muffin tins. Bake for 20 minutes or until centers are almost set. Cool. Refrigerate 2 hours or overnight.4. Decorate cheesecake tops with cherry pie filling.Makes 12 cheesecakes/servings.";
     $list = RecipeParser_Text::parseListFromBlob($str);
     $this->assertEquals(5, count($list));
     $this->assertRegExp("/^Preheat.*paper.\$/", $list[0]);
     $this->assertRegExp("/^In mixing bowl/", $list[1]);
     $this->assertRegExp("/^Makes 12.*servings.\$/", $list[4]);
 }