rspec初体验

安装rspec

$ gem install rspec

创建一个项目:

$ mkdir rspec-demo

在项目中初始化rspec

$ rspec --init

初始化安装完成后,创建lib目录,并创建bowling.rb

文件内容如下:

保存后,创建spec/bowling_spec.rb

执行测试:

$ rspec --format doc

看到测试失败的日志输出,fix一下bowling.rb当中的逻辑:

此时重新执行测试:

可以看到测试成功。

My Github Page: https://github.com/liweinan

Powered by Jekyll and Theme by solid

If you have any question want to ask or find bugs regarding with my blog posts, please report it here:
https://github.com/liweinan/liweinan.github.io/issues