RSpec路由规范:哈希中的字段序列

时间:2017-05-02 11:02:17

标签: ruby-on-rails ruby rspec ruby-hash

由于哈希上的序列,我遇到了实际与预期失败的问题。我不记得以前看过这个...而且无论如何我认为哈希是无序的?

我怎样才能通过测试?

RSpec.describe ArticleSectionsController, type: :routing do
  describe "routing" do

    it "routes to #index" do
      expect(:get => "/articles/5/article_sections").to route_to("article_sections#index", article_id: 5)
    end
  end
end
  1) ArticleSectionsController routing routes to #index
     Failure/Error: expect(:get => "/articles/5/article_sections").to route_to("article_sections#index", article_id: 5)

       The recognized options <{"controller"=>"article_sections", "action"=>"index", "article_id"=>"5"}> did not match <{"article_id"=>5, "controller"=>"article_sections", "action"=>"index"}>, difference:.
       --- expected
       +++ actual
       @@ -1 +1 @@
        -{"article_id"=>5, "controller"=>"article_sections", "action"=>"index"}
       +{"controller"=>"article_sections", "action"=>"index", "article_id"=>"5"}

1 个答案:

答案 0 :(得分:3)

问题不在于哈希的顺序,问题在于内容。

"article_id"=>"5"

不同
"article_id"=> 5

使用route_to参数中的字符串版本,这样可以解决问题。