Browse Source

fixed unit tests

Fabien Potencier 14 năm trước cách đây
mục cha
commit
e293fb7abe

+ 5 - 5
tests/Symfony/Tests/Component/Console/Fixtures/application_asxml1.txt

@@ -6,11 +6,11 @@
   <description>Displays help for a command</description>
   <help>The &lt;info&gt;help&lt;/info&gt; command displays help for a given command:
  
-   &lt;info&gt;./symfony help list&lt;/info&gt;
+   &lt;info&gt;./app/console help list&lt;/info&gt;
  
  You can also output the help as XML by using the &lt;comment&gt;--xml&lt;/comment&gt; option:
  
-   &lt;info&gt;./symfony help --xml list&lt;/info&gt;</help>
+   &lt;info&gt;./app/console help --xml list&lt;/info&gt;</help>
   <aliases />
   <arguments>
     <argument name="command_name" is_required="0" is_array="0">
@@ -31,15 +31,15 @@
   <description>Lists commands</description>
   <help>The &lt;info&gt;list&lt;/info&gt; command lists all commands:
  
-   &lt;info&gt;./symfony list&lt;/info&gt;
+   &lt;info&gt;./app/console list&lt;/info&gt;
  
  You can also display the commands for a specific namespace:
  
-   &lt;info&gt;./symfony list test&lt;/info&gt;
+   &lt;info&gt;./app/console list test&lt;/info&gt;
  
  You can also output the information as XML by using the &lt;comment&gt;--xml&lt;/comment&gt; option:
  
-   &lt;info&gt;./symfony list --xml&lt;/info&gt;</help>
+   &lt;info&gt;./app/console list --xml&lt;/info&gt;</help>
   <aliases/>
   <arguments>
     <argument name="namespace" is_required="0" is_array="0">

+ 2 - 2
tests/Symfony/Tests/Component/Console/Fixtures/application_run2.txt

@@ -18,9 +18,9 @@ Options:
 Help:
  The help command displays help for a given command:
  
-   ./symfony help list
+   ./app/console help list
  
  You can also output the help as XML by using the --xml option:
  
-   ./symfony help --xml list
+   ./app/console help --xml list
 

+ 3 - 3
tests/Symfony/Tests/Component/Console/Fixtures/application_run3.txt

@@ -10,13 +10,13 @@ Options:
 Help:
  The list command lists all commands:
  
-   ./symfony list
+   ./app/console list
  
  You can also display the commands for a specific namespace:
  
-   ./symfony list test
+   ./app/console list test
  
  You can also output the information as XML by using the --xml option:
  
-   ./symfony list --xml
+   ./app/console list --xml