Correct some specs that need full URLs

This commit is contained in:
Bryan Helmkamp 2009-05-11 00:16:38 -04:00
parent 35cbfd9643
commit 3e71ae3733
6 changed files with 8 additions and 7 deletions

3
.gitignore vendored
View File

@ -11,4 +11,5 @@ log
*.swp
results
test_apps
*.tmproj
*.tmproj
webrat.log

View File

@ -108,7 +108,7 @@ describe "click_link" do
<a title="piddle" href="/page">Link text</a>
</html>
HTML
webrat_session.should_receive(:get).with("/page", {})
webrat_session.should_receive(:get).with("http://www.example.com/page", {})
click_link 'piddle'
end
@ -118,7 +118,7 @@ describe "click_link" do
<a title="piddlediddle" href="/page">Link text</a>
</html>
HTML
webrat_session.should_receive(:get).with("/page", {})
webrat_session.should_receive(:get).with("http://www.example.com/page", {})
click_link /iddle/
end

View File

@ -90,7 +90,7 @@ describe "select_date" do
</form>
</html>
HTML
webrat_session.should_receive(:post).with("/appointments",
webrat_session.should_receive(:post).with("http://www.example.com/appointments",
"appointment" => {"date(1i)" => '2003', "date(2i)" => "12", "date(3i)" => "25"})
select_date Date.parse("December 25, 2003"), :from => "date ?"
click_button

View File

@ -85,7 +85,7 @@ describe "select_datetime" do
</form>
</html>
HTML
webrat_session.should_receive(:post).with("/appointments",
webrat_session.should_receive(:post).with("http://www.example.com/appointments",
"appointment" => {"time(1i)" => '2003', "time(2i)" => "12", "time(3i)" => "25", "time(4i)" => "09", "time(5i)" => "30"})
select_datetime "December 25, 2003 9:30", :from => "Time ?"
click_button

View File

@ -242,7 +242,7 @@ describe "select" do
</html>
HTML
webrat_session.should_receive(:post).with("/login", "clothes" => "pants")
webrat_session.should_receive(:post).with("http://www.example.com/login", "clothes" => "pants")
click_button
end

View File

@ -58,7 +58,7 @@ describe "select_time" do
</form>
</html>
HTML
webrat_session.should_receive(:post).with("/appointments",
webrat_session.should_receive(:post).with("http://www.example.com/appointments",
"appointment" => {"time(4i)" => "09", "time(5i)" => "30"})
select_time "9:30AM", :from => "Time #"
click_button