summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo <mo.khan@gmail.com>2018-12-04 12:26:20 -0700
committermo <mo.khan@gmail.com>2018-12-04 12:26:20 -0700
commit025e73fc84f7c20df0e94c3b1c96d9b21f26d67f (patch)
tree4511d4537f35545f0533fe1453b03609bdc9330f
parent3fd6a5904e9a35770bca1980fb3cfc6c0239f230 (diff)
replace puts with assertion.v1.0.28
-rw-r--r--spec/saml/kit/builders/metadata_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/saml/kit/builders/metadata_spec.rb b/spec/saml/kit/builders/metadata_spec.rb
index 2d124ee..709749a 100644
--- a/spec/saml/kit/builders/metadata_spec.rb
+++ b/spec/saml/kit/builders/metadata_spec.rb
@@ -89,6 +89,6 @@ RSpec.describe Saml::Kit::Builders::Metadata do
xxx.add_assertion_consumer_service('https://www.example.org/assertions', binding: :http_post)
end
end
- puts metadata.to_xml(pretty: true)
+ expect(metadata.to_xml(pretty: true)).to be_present
end
end