summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-01-06 10:05:51 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-01-06 10:05:51 +0100
commitdf5e1a8e31104b6cb92689c3d82b0c47b77230f1 (patch)
treebb53c04ed171cf78e63fd82b5c094a2ef2285c45 /spec
parent7eb6a22e5549d25b95292c23498bd07f44c18fc8 (diff)
downloadzorglub-df5e1a8e31104b6cb92689c3d82b0c47b77230f1.zip
zorglub-df5e1a8e31104b6cb92689c3d82b0c47b77230f1.tar.gz
fix Config#engine_proc_ext, file engine and spec
Diffstat (limited to 'spec')
-rw-r--r--spec/node_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/node_spec.rb b/spec/node_spec.rb
index 23fd379..701c700 100644
--- a/spec/node_spec.rb
+++ b/spec/node_spec.rb
@@ -195,9 +195,9 @@ describe Zorglub do
#
it "ext definition and file engine should work" do
r = Node0.my_call '/xml_file'
- r.body[0]='<xml>file</xml>'
+ r.body[0].should == "<xml>file<\/xml>\n"
r = Node0.my_call '/plain_file'
- r.body[0]='plain text'
+ r.body[0].should == "plain file\n"
end
end
#