Minor changes to improve testability of helpers
[castle.git] / MonoRail / Castle.MonoRail.Framework.Tests / AccessibleThroughTestCase.cs
blobd40332a50b1f30085fed5a4640d861653af34002
1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle.MonoRail.Framework.Tests
17 using NUnit.Framework;
19 [TestFixture]
20 public class AccessibleThroughTestCase : AbstractTestCase
22 [Test]
23 public void AccessibleThroughPostVerbByPost()
25 DoPost("home/PostOnlyMethod.rails");
26 AssertSuccess();
29 [Test]
30 public void AccessibleThroughPostVerbByGet()
32 DoGet("home/PostOnlyMethod.rails");
33 AssertReplyContains("Access to the action [PostOnlyMethod] on controller [home] is not allowed by the http verb [GET].");
36 [Test]
37 public void AccessibleThroughGetVerbByPost()
39 DoPost("home/GetOnlyMethod.rails");
40 AssertReplyContains("Access to the action [GetOnlyMethod] on controller [home] is not allowed by the http verb [POST].");
43 [Test]
44 public void AccessibleThroughGetVerbByGet()
46 DoGet("home/GetOnlyMethod.rails");
47 AssertSuccess();