文件名称:learn_ruby_rspec
文件大小:15KB
文件格式:ZIP
更新时间:2024-04-09 23:18:19
Ruby
测试第一个Ruby-RSpec 3版
设定说明
分叉此回购
将您的存储库版本克隆到本地计算机
在本地计算机上,将cd插入终端中此仓库的根文件夹
运行bundle install安装该项目需要的所有gem。
练习入门
要完成第一个练习,请遵循以下过程
cd到00_hello从这个项目的根文件夹
运行rake ,运行测试。它将失败,并显示以下错误:
Failures:
1) the hello function says hello
Failure/Error: expect(hello).to eq("Hello!")
NameError:
undefined local variable or method `hello' for #
【文件预览】:
learn_ruby_rspec-master
----06_pig_latin()
--------pig_latin.rb(22B)
--------pig_latin_spec.rb(2KB)
----rspec_config.rb(65B)
----Rakefile(396B)
----02_calculator()
--------calculator_spec.rb(2KB)
--------calculator.rb(22B)
----05_timer()
--------timer_spec.rb(451B)
--------timer.rb(22B)
----Gemfile(74B)
----.bundle()
--------config(7B)
----Gemfile.lock(545B)
----03_basics()
--------basics_spec.rb(2KB)
--------basics.rb(22B)
----00_hello()
--------hello.rb(36B)
--------hello_spec.rb(3KB)
----01_temperature()
--------temperature.rb(22B)
--------temperature_spec.rb(2KB)
----04_simon_says()
--------simon_says.rb(22B)
--------simon_says_spec.rb(2KB)
----.rspec(30B)
----spec()
--------spec_helper.rb(4KB)
----.gitignore(18B)
----README.md(2KB)