We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8af3427 commit 2e26c5eCopy full SHA for 2e26c5e
spec/wasabi/document/escaped_endpoint_spec.rb
@@ -4,11 +4,11 @@
4
describe Wasabi::Document do
5
context "with: escaped_endpoint.wsdl" do
6
7
- subject { Wasabi::Document.new fixture(:escaped_endpoint).read }
+ subject(:document) { Wasabi::Document.new fixture(:escaped_endpoint).read }
8
9
describe '#endpoint' do
10
subject { super().endpoint }
11
- it { is_expected.to eq URI("http://localhost/soap%20service") }
+ it "supports spaces in URIs" { expect(document.endpoint).to eq URI("http://localhost/soap%20service") }
12
end
13
14
0 commit comments