Setup integration test working

Added (very bad) cookie support to integration test lib
Workaround to resolving collections appears to have worked

--HG--
branch : dev
This commit is contained in:
Louis DeJardin
2010-04-21 15:01:01 -07:00
parent 583138c7ed
commit 19e694834d
13 changed files with 170 additions and 9 deletions

View File

@@ -166,7 +166,13 @@ this.ScenarioSetup(scenarioInfo);
#line 44
testRunner.And("I hit \"Finish Setup\"");
#line 45
testRunner.Then("the status should be 302 Found");
testRunner.And("I go to \"/Default.aspx\"");
#line 46
testRunner.Then("I should see \"<h1>My Site</h1>\"");
#line 47
testRunner.And("I should see \"Welcome, <strong>admin</strong>!\"");
#line 48
testRunner.And("I should see \"you\'ve successfully set-up your Orchard site\"");
#line hidden
testRunner.CollectScenarioErrors();
}