Ruby Hart的Ruby on Rails 3教程 - application_helper_spec.rb

时间:2012-05-27 22:28:55

标签: ruby-on-rails

在此测试文件中,代码如下所示:

        it "should include the base title" do
          full_title("foo").should =~ /^Ruby on Rails Tutorial Sample App/
        end

我的问题是“foo”在那里做什么?它可以是任何字符串吗?因为现在我所有的测试都是通过这个“foo”参数传递的。

感谢, 麦克

1 个答案:

答案 0 :(得分:0)

它检查辅助方法'foo'作为参数传递,返回指定的字符串。因此,为了确保,您需要检查full_title辅助方法。