Add test that fails prior to the change for #2668
This commit is contained in:
parent
e6c97547e4
commit
ccf624211a
|
|
@ -39,7 +39,8 @@ groups() ->
|
||||||
import_case10,
|
import_case10,
|
||||||
import_case11,
|
import_case11,
|
||||||
import_case12,
|
import_case12,
|
||||||
import_case13
|
import_case13,
|
||||||
|
import_case14
|
||||||
]},
|
]},
|
||||||
{boot_time_import, [], [
|
{boot_time_import, [], [
|
||||||
import_on_a_booting_node
|
import_on_a_booting_node
|
||||||
|
|
@ -141,6 +142,8 @@ import_case13(Config) ->
|
||||||
Skip
|
Skip
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
import_case14(Config) -> import_file_case(Config, "case14").
|
||||||
|
|
||||||
export_import_round_trip_case1(Config) ->
|
export_import_round_trip_case1(Config) ->
|
||||||
%% case 6 has runtime parameters that do not depend on any plugins
|
%% case 6 has runtime parameters that do not depend on any plugins
|
||||||
import_file_case(Config, "case6"),
|
import_file_case(Config, "case6"),
|
||||||
|
|
|
||||||
|
|
@ -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": "#"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue