Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / gherkin / tests / Behat / Gherkin / Node / StepNodeTest.php
diff --git a/vendor/behat/gherkin/tests/Behat/Gherkin/Node/StepNodeTest.php b/vendor/behat/gherkin/tests/Behat/Gherkin/Node/StepNodeTest.php
deleted file mode 100644 (file)
index d334415..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-namespace Tests\Behat\Gherkin\Node;
-
-use Behat\Gherkin\Node\PyStringNode;
-use Behat\Gherkin\Node\StepNode;
-use Behat\Gherkin\Node\TableNode;
-
-class StepNodeTest extends \PHPUnit_Framework_TestCase
-{
-    public function testThatStepCanHaveOnlyOneArgument()
-    {
-        $this->setExpectedException('Behat\Gherkin\Exception\NodeException');
-
-        new StepNode('Gangway!', 'I am on the page:', array(
-            new PyStringNode(array('one', 'two'), 11),
-            new TableNode(array(array('one', 'two'))),
-        ), 10, 'Given');
-    }
-}