From 4a00fcbd92d6fbc5514e04c1de3a0540e84e996e Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 15 Feb 2024 16:39:14 +0900 Subject: Rename and restructured net/ftp and net/http examples --- .../library/net-http/httpexceptions/initialize_spec.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 spec/ruby/library/net-http/httpexceptions/initialize_spec.rb (limited to 'spec/ruby/library/net-http/httpexceptions/initialize_spec.rb') diff --git a/spec/ruby/library/net-http/httpexceptions/initialize_spec.rb b/spec/ruby/library/net-http/httpexceptions/initialize_spec.rb new file mode 100644 index 0000000000..5316cca69d --- /dev/null +++ b/spec/ruby/library/net-http/httpexceptions/initialize_spec.rb @@ -0,0 +1,17 @@ +require_relative '../../../spec_helper' +require 'net/http' +require_relative 'fixtures/classes' + +describe "Net::HTTPExceptions#initialize when passed message, response" do + before :each do + @exception = NetHTTPExceptionsSpecs::Simple.new("error message", "a http response") + end + + it "calls super with the passed message" do + @exception.message.should == "error message" + end + + it "sets self's response to the passed response" do + @exception.response.should == "a http response" + end +end -- cgit v1.2.3