You can trigger the mqtt in node, via the following python script,
import paho.mqtt.client as mqtt
client = mqtt.Client('0')
client.connect('localhost',1883)
result = client.publish('test','hi')
msg = {
payload:"I am Leo",
topic:"Warnings",
body:"I am warning you."
};
return msg;
Server: localhost:1883
Topic: test
Now if you click inject, it will trigger a signal from mqtt-out. The mqtt-in node should receive the message.