From ebb7fda2e56bfba4d238c7f0f892bd02d1e7b7fc Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Fri, 4 Apr 2014 20:45:21 +0000 Subject: [PATCH] removing deprecated code for loading non-existent inheritance tests from the mustache spec --- .../Mustache/Test/Functional/MustacheSpecTest.php | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/test/Mustache/Test/Functional/MustacheSpecTest.php b/test/Mustache/Test/Functional/MustacheSpecTest.php index c128278..312a4c9 100644 --- a/test/Mustache/Test/Functional/MustacheSpecTest.php +++ b/test/Mustache/Test/Functional/MustacheSpecTest.php @@ -127,21 +127,6 @@ class Mustache_Test_Functional_MustacheSpecTest extends PHPUnit_Framework_TestCa return $this->loadSpec('sections'); } - /** - * @group inheritance - * @dataProvider loadInheritanceSpec - */ - public function testInheritanceSpec($desc, $source, $partials, $data, $expected) - { - $template = self::loadTemplate($source, $partials); - $this->assertEquals($expected, $template->render($data), $desc); - } - - public function loadInheritanceSpec() - { - return $this->loadSpec('inheritance'); - } - /** * Data provider for the mustache spec test. *