Sha256: 76adffdc0e014b6a516cd565f5979c03dc2cfd5000b3afbf94a351d14d4f319b
Contents?: true
Size: 406 Bytes
Versions: 10
Compression:
Stored size: 406 Bytes
Contents
When /^change the server URL to "(.+)"$/ do |url| fill_in("bigbluebutton_server[url]", :with => url) end When /^clicks in the button to save the server$/ do find(:css, "input[type=submit]").click end Then /^the server URL should( not)? be "(.+)"$/i do |negate, url| if negate.nil? BigbluebuttonServer.first.url.should == url else BigbluebuttonServer.first.url.should_not == url end end
Version data entries
10 entries across 10 versions & 1 rubygems