admin管理员组文章数量:1344979
In Rails 5.x I could define options
like so:
options = {class: "...", "data-unix-timestamp": "...", "data-toggle":"..."}
tag.div('', options)
Upgrading to Rails 7.0.8.7, this fails:
Failure/Error: tag.div('', options)
ArgumentError:
wrong number of arguments (given 3, expected 1..2)
In Rails 5.x I could define options
like so:
options = {class: "...", "data-unix-timestamp": "...", "data-toggle":"..."}
tag.div('', options)
Upgrading to Rails 7.0.8.7, this fails:
Failure/Error: tag.div('', options)
ArgumentError:
wrong number of arguments (given 3, expected 1..2)
Share
Improve this question
asked 11 hours ago
Eric WanchicEric Wanchic
2,0841 gold badge24 silver badges26 bronze badges
1
|
1 Answer
Reset to default 0Fix: options
need to be explicitly specified.
options = {class: "...", "data-unix-timestamp": "...", "data-toggle":"..."}
"<div #{tag.attributes(options)} ></div>".html_safe
本文标签:
版权声明:本文标题:rspec - wrong number of arguments (given 3, expected 1..2) in Rails 7.0.x, tag.div - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743750396a2532538.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
tag
helper accepts 4 arguments so the stacktrace is likely missing some details. Willing to bet you are using rails 7 with an older ruby version and there is some form of argument expansion going on that is not supported by your version of ruby. – engineersmnky Commented 10 hours ago