We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 842b599 commit c7e324aCopy full SHA for c7e324a
src/Symfony/Component/Console/Tests/Formatter/OutputFormatterTest.php
@@ -115,6 +115,15 @@ public function testInlineStyle()
115
$this->assertEquals("\033[34;41msome text\033[0m", $formatter->format('<fg=blue;bg=red>some text</fg=blue;bg=red>'));
116
}
117
118
+ /**
119
+ * @group nst
120
+ */
121
+ public function testNonStyleTag()
122
+ {
123
+ $formatter = new OutputFormatter(true);
124
+ $this->assertEquals("\033[32msome \033[0m\033[32m<tag> styled\033[0m", $formatter->format('<info>some <tag> styled</info>'));
125
+ }
126
+
127
public function testNotDecoratedFormatter()
128
{
129
$formatter = new OutputFormatter(false);
0 commit comments