spec/formatting/http/integer_spec.rb in ronin-support-0.1.0.pre2 vs spec/formatting/http/integer_spec.rb in ronin-support-0.1.0.pre3
- old
+ new
@@ -14,26 +14,26 @@
it "should provide String#format_http" do
should respond_to(:format_http)
end
- describe "uri_encode" do
+ describe "#uri_encode" do
let(:uri_encoded) { '%20' }
it "should URI encode itself" do
subject.uri_encode.should == uri_encoded
end
end
- describe "uri_escape" do
+ describe "#uri_escape" do
let(:uri_escaped) { '+' }
it "should URI escape itself" do
subject.uri_escape.should == uri_escaped
end
end
- describe "format_http" do
+ describe "#format_http" do
let(:http_formatted) { '%20' }
it "should format the byte" do
subject.format_http.should == http_formatted
end