Add test that fails prior to the change for #2668

This commit is contained in:
Luke Bakken 2020-12-02 12:32:33 -08:00
parent e6c97547e4
commit ccf624211a
No known key found for this signature in database
GPG Key ID: D99DE30E43EAE440
2 changed files with 38 additions and 1 deletions

View File

@ -39,7 +39,8 @@ groups() ->
import_case10,
import_case11,
import_case12,
import_case13
import_case13,
import_case14
]},
{boot_time_import, [], [
import_on_a_booting_node
@ -141,6 +142,8 @@ import_case13(Config) ->
Skip
end.
import_case14(Config) -> import_file_case(Config, "case14").
export_import_round_trip_case1(Config) ->
%% case 6 has runtime parameters that do not depend on any plugins
import_file_case(Config, "case6"),

View File

@ -0,0 +1,34 @@
{
"vhosts": [
{
"name": "/"
}
],
"exchanges": [
{
"name": "x_demo",
"vhost": "/",
"type": "fanout",
"durable": true,
"auto_delete": false,
"internal": false
}
],
"queues": [
{
"name": "q_demo",
"vhost": "/",
"durable": true,
"auto_delete": false
}
],
"bindings": [
{
"source": "x_demo",
"vhost": "/",
"destination": "q_demo",
"destination_type": "queue",
"routing_key": "#"
}
]
}