webrat/spec/integration/rails/test/integration/webrat_rails_test.rb

18 lines
322 B
Ruby

require 'test_helper'
class WebratTest < ActionController::IntegrationTest
test "should scope within an object" do
visit root_path
within FakeModel.new do
fill_in "Object field", :with => "Test"
assert_raise Webrat::NotFoundError do
check "TOS"
end
end
end
end