我正在尝试在Rails应用程序中测试帮助器。我是rspec
的新手,我很难让测试运行。这是我的测试文件:
require 'spec_helper'
describe "ServiceHoursHelpers" do
include ServiceHoursHelper
describe "test" do
it "should equal Jason" do
test.should eql("Test")
end
end
end
这是我的测试文件:
module ServiceHoursHelper
def test
"Test"
end
end
这是我正在运行的命令
rspec spec/helpers/service_hours_helper_spec.rb
它没有成功,没有错误,所以很明显我没有打到代码。我错过了什么?
答案 0 :(得分:0)
尝试运行您的测试方法:
helper.test.should eql("Test")