- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在运行 rspec 文件时不断收到错误:
Failures:
1) Book title should capitalize the first letter
Failure/Error: @book.title("inferno")
LocalJumpError:
no block given (yield)
# ./08_book_titles.rb:7:in `title'
这是 book_title.rb
class :: Book
attr_accessor :some_title
def title(some_title)
little_words = %w(of and for the over under an a but or nor yet so at around by after along from on to with without)
some_title = yield
some_title.split.each_with_index.map{|x, index| little_words.include?(x) && index > 0 ? x : x.capitalize }.join(" ")
end #def
end
这是 rspec 文件(或至少是第一个规范):
require_relative '08_book_titles'
describe Book do
before do
@book = Book.new
end
describe 'title' do
it 'should capitalize the first letter' do
@book.title("inferno")
@book.title.should == "Inferno"
end
end
我已将 yield 包含在方法中,规范中有一个 block ...所以我不明白为什么它不调用该 block 。我已经尝试了所有我能想到的方法,从直接在 map 上调用它(而不是使用分配给它的变量)到单独调用它然后在 map 上使用它,再到尝试将它作为标题的参数传递在方法中......到你现在看到的。我还阅读了大量线程。我没看到什么?
我看到 future 的练习也将在自定义类上运行规范,所以我也喜欢一些提示(或链接),这些提示(或链接)是我在使用 rspec 测试自定义类时需要了解或注意的事情。谢谢!
更新
所以我将 book_title.rb 更改为如下所示:
class :: Book
def title
little_words = %w(of and for the over under an a but or nor yet so at around by after along from on to with without)
self.split.each_with_index.map{|x, index| little_words.include?(x) && index > 0 ? x : x.capitalize }.join(" ")
end #def
end
因为我可能错误地编辑了规范 - 我将它们还原为:
require '08_book_titles'
describe Book do
before do
@book = Book.new
end
describe 'title' do
it 'should capitalize the first letter' do
@book.title = "inferno"
@book.title.should == "Inferno"
end
end
我现在得到的错误是:
Failure/Error: @book.title = "inferno"
NoMethodError:
undefined method `title=' for #<Book:0x007f292a06c6b0>
# ./08_book_titles_spec.rb:26:in `block (3 levels) in <top (required)>'
最佳答案
您误用了 yield
不,规范中没有任何 block 。如果有,规范看起来像...
@book.title("inferno") do
"inferno"
end
看到我添加的 block 了吗?但是你不需要一个 block ,你不应该使用 yield
您似乎认为您需要 yield
来访问参数……您不需要。你的 title
方法应该直接使用传递的参数......
def title(new_title)
little_words = %w(of and for the over under an a but or nor yet so at around by after along from on to with without)
@some_title = new_title.split.each_with_index.map{|x, index| little_words.include?(x) && index > 0 ? x : x.capitalize }.join(" ")
end #def
最后,您的测试实际上调用了 title
方法两次,而您应该只调用一次并使用 attr_accessor 方法来测试结果。
it 'should capitalize the first letter' do
@book.title("inferno")
@book.some_title.should == "Inferno"
end
关于ruby - 本地跳转错误 : no block given,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29550504/
以下是一个非常简单的ruby服务器。 require 'socket' local_socket = Socket.new(:INET, :STREAM) local_addr = Socket.
我正在使用 OS X(使用 bash),并且是 unix 的新手。我想知道是否可以修改一些文件以便运行 ruby 程序,我不需要“ruby file.rb”,而是可以运行“ruby.rb”。 有理
我在用 Ruby 替换字符串时遇到一些问题。 我的原文:人之所为不如兽之所为。 我想替换为:==What== human does is not like ==what== animal does.
我想在一个循环中从 Ruby 脚本做这样的事情: 写一个文件a.rb(每次迭代都会改变) 执行系统(ruby 'a.rb') a.rb 将带有结果的字符串写入文件“results” a.rb 完成并且
我的问题是尝试创建一个本地服务器,以便我可以理解由我的新团队开发的应用程序。我的问题是我使用的是 Ruby 2.3.3,而 Gemfile 需要 2.3.1。我无法编辑 Gemfile,因为我被告知很
我有一个使用 GLI 框架用 Ruby 编写的命令行实用程序。我想在我的主目录中配置我的命令行实用程序,使用 Ruby 本身作为 DSL 来处理它(类似于 Gemfile 或 Rakefile)。 我
我的 Rails 应用 Controller 中有这段代码: def delete object = model.datamapper_class.first(:sourced_id =>
我正在寻找的解析器应该: 对 Ruby 解析友好, 规则设计优雅, 产生用户友好的解析错误, 用户文档的数量应该比计算器示例多, UPD:允许在编写语法时省略可选的空格。 快速解析不是一个重要的特性。
我刚开始使用 Ruby,听说有一种“Ruby 方式”编码。除了 Ruby on Rails 之外,还有哪些项目适合学习并被认可且设计良好? 最佳答案 Prawn被明确地创建为不仅是一个该死的好 PDF
我知道之前有人问过类似的问题,但是我该如何构建一个无需在前面输入“ruby”就可以在终端中运行的 Ruby 文件呢? 这里的最终目标是创建一个命令行工具包类型的东西。现在,为了执行我希望用户能够执行的
例如哈希a是{:name=>'mike',:age=>27,:gender=>'male'}哈希 b 是 {:name=>'mike'} 我想知道是否有更好的方法来判断 b 哈希是否在 a 哈希内,而
我是一名决定学习 Ruby 和 Ruby on Rails 的 ASP.NET MVC 开发人员。我已经有所了解并在 RoR 上创建了一个网站。在 ASP.NET MVC 上开发,我一直使用三层架构:
最近我看到 Gary Bernhardt 展示了他用来在 vim 中执行 Ruby 代码的 vim 快捷方式。捷径是 :map ,t :w\|:!ruby %. 似乎这个方法总是执行系统 Rub
在为 this question about Blue Ruby 选择的答案中,查克说: All of the current Ruby implementations are compiled to
我有一个 Ruby 数组 > list = Request.find_all_by_artist("Metallica").map(&:song) => ["Nothing else Matters"
我在四舍五入时遇到问题。我有一个 float ,我想将其四舍五入到小数点后的百分之一。但是,我只能使用 .round ,它基本上将它变成一个 int,意思是 2.34.round # => 2. 有没
我使用 ruby on rails 编写了一个小型 Web 应用程序,它的主要目的是上传、存储和显示来自 xml(文件最多几 MB)文件的结果。运行大约 2 个月后,我注意到 mongrel 进程
我们如何用 Ruby 转换像这样的字符串: 𝑙𝑎𝑡𝑜𝑟𝑟𝑒 收件人: Latorre 最佳答案 s = "𝑙𝑎𝑡𝑜𝑟𝑟𝑒" => "𝑙𝑎𝑡𝑜𝑟𝑟𝑒" s.u
通过 ruby monk 时,他们偶尔会从左侧字段中抛出一段语法不熟悉的代码: def compute(xyz) return nil unless xyz xyz.map {|a,
不确定我做错了什么,但我似乎弄错了。 问题是,给你一串空格分隔的数字,你必须返回最大和最小的数字。 注意:所有数字都是有效的 Int32,不需要验证它们。输入字符串中始终至少有一个数字。输出字符串必须
我是一名优秀的程序员,十分优秀!