Added describe for missing webrat API methods

This is just a guideline for what needs to be done
This commit is contained in:
Jonas Nicklas and Kevin Fitzpatrick 2009-11-10 23:35:53 +01:00 committed by Jonas Nicklas
parent 0b43f8ede2
commit fde53767a4
1 changed files with 32 additions and 0 deletions

View File

@ -169,6 +169,38 @@ shared_examples_for "session" do
YAML.load(@session.body)['password'].should == 'supasikrit'
end
end
describe "#choose" do
end
describe "#set_hidden_field" do
end
describe "#check" do
end
describe "#uncheck" do
end
describe "#select" do
end
describe "#unselect" do
end
describe "#attach_file" do
end
describe "#submit_form" do
end
end
describe Webcat::Session do