assert_contain 和其他断言是测试/单元的方法,尝试要求它并从测试方法内部使用 webrat:
require 'test/unit'
class TC_MyTest < Test::Unit::TestCase
def test_fail
assert(false, 'Assertion was false.')
end
end
无论如何,我还没有测试过它,但如果你感兴趣的话,我有一个适用于 rspec 的 spec_helper:
require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT)
require 'spec/rails'
require "webrat"
Webrat.configure do |config|
config.mode = :rails
end
module Spec::Rails::Example
class IntegrationExampleGroup < ActionController::IntegrationTest
def initialize(defined_description, options={}, &implementation)
defined_description.instance_eval do
def to_s
self
end
end
super(defined_description)
end
Spec::Example::ExampleGroupFactory.register(:integration, self)
end
end
加上一个规格:
# remember to require the spec helper
describe "Your Context" do
it "should GET /url" do
visit "/url"
body.should =~ /some text/
end
end
试一试,我发现它非常有用(比黄瓜和周围的其他蔬菜更多),当不需要文本规范(功能)而不是我最喜欢的代码规范时。
ps 你需要rspec gem,它会安装“spec”命令来执行你的规范。