summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenId.Test/UI/OpenIdMobileTextBoxTest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenId.Test/UI/OpenIdMobileTextBoxTest.cs')
-rw-r--r--src/DotNetOpenId.Test/UI/OpenIdMobileTextBoxTest.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/DotNetOpenId.Test/UI/OpenIdMobileTextBoxTest.cs b/src/DotNetOpenId.Test/UI/OpenIdMobileTextBoxTest.cs
new file mode 100644
index 0000000..7ab78c6
--- /dev/null
+++ b/src/DotNetOpenId.Test/UI/OpenIdMobileTextBoxTest.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using NUnit.Framework;
+
+namespace DotNetOpenId.Test.UI {
+ [TestFixture]
+ public class OpenIdMobileTextBoxTest {
+ [Test]
+ public void TextBoxAppears() {
+ string html = UITestSupport.Host.ProcessRequest(TestSupport.MobileConsumerPage);
+ Assert.IsTrue(html.Contains("<input "));
+ }
+ }
+}