我想做的是ruby sayhello.rb
在命令行上运行,然后接收Hello from Rspec
.
我有这个:
class Hello
def speak
puts 'Hello from RSpec'
end
end
hi = Hello.new #brings my object into existence
hi.speak
现在我想在 rspec 中编写一个测试来检查命令行输出实际上是“Hello from RSpec”而不是“我喜欢 Unix”
不工作。我目前在我的 sayhello_spec.rb 文件中有这个
require_relative 'sayhello.rb' #points to file so I can 'see' it
describe "sayhello.rb" do
it "should say 'Hello from Rspec' when ran" do
STDOUT.should_receive(:puts).with('Hello from RSpec')
end
end
另外,我需要在我的 RSPEC 中实际查看测试应该是什么样子。