Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mirror
rabbitmq
Commits
396a5078
Unverified
Commit
396a5078
authored
Jun 24, 2021
by
Michael Klishin
Browse files
Correct an assertion
parent
b9ee8fd3
Changes
2
Hide whitespace changes
Inline
Side-by-side
test/integration/36x_lwrps/default_spec.rb
View file @
396a5078
...
...
@@ -18,7 +18,7 @@ describe command('curl -u guest:guest -H "Accept: application/json" -X GET "http
end
describe
command
(
'rabbitmqctl -q list_policies'
)
do
its
(
:stdout
)
{
should
match
(
%r{{"
ha-mode":"all","ha-sync-mode":"automatic"
}}
)
}
its
(
:stdout
)
{
should
match
(
%r{{"
length-limit": 1000
}}
)
}
end
describe
command
(
'rabbitmqctl -q list_parameters -p sensu'
)
do
...
...
test/integration/lwrps/default_spec.rb
View file @
396a5078
...
...
@@ -6,7 +6,7 @@ describe command('curl -u guest:guest -H "Accept: application/json" -X GET "http
end
describe
command
(
'rabbitmqctl list_policies -s'
)
do
its
(
:stdout
)
{
should
match
(
%r{{"
ha-mode":"all","ha-sync-mode":"automatic"
}}
)
}
its
(
:stdout
)
{
should
match
(
%r{{"
max-length":1000
}}
)
}
end
describe
command
(
'rabbitmqctl list_parameters -s -p sensu'
)
do
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment