diff options
Diffstat (limited to 'spec/node_spec.rb')
-rw-r--r-- | spec/node_spec.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/node_spec.rb b/spec/node_spec.rb index 836c9cb..1e39567 100644 --- a/spec/node_spec.rb +++ b/spec/node_spec.rb @@ -56,6 +56,7 @@ describe Zorglub do it 'should return err404 response when no method found' do expect(Node0.respond_to?('noresponse')).to be_falsey r = Node0.my_call '/noresponse' + expect(r[2][0]).to eq "Node0 mapped at /node0 can't respond to : noresponse" expect(r[0]).to eq 404 end |