Skip to content

Commit 058a21a

Browse files
committed
✅ Add modular blackfire test for fpm
1 parent 7700e28 commit 058a21a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/spec/shared/php/modules.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,11 @@
210210
end
211211

212212
# disabled by default
213-
its(:stdout) { should_not contain('blackfire') }
213+
if ( $testConfiguration[:phpBlackfire] )
214+
its(:stdout) { should contain('blackfire') }
215+
else
216+
its(:stdout) { should_not contain('blackfire') }
217+
end
214218

215219
its(:exit_status) { should eq 0 }
216220
end

0 commit comments

Comments
 (0)