Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. Scenario: When the belongs to is optional and resources is renamed
  2. Given a configuration of:
  3. """
  4. ActiveAdmin.register User
  5. ActiveAdmin.register Post, as: "Article" do
  6. belongs_to :user, optional: true
  7. navigation_menu :default
  8. end
  9. """
  10. When I go to the last author's articles
  11. Then the "Users" tab should be selected
  12. And I should see a menu item for "Articles"
  13.  
  14. When I follow "Articles"
  15. Then the "Articles" tab should be selected
  16.  
  17.  
  18. when /^the last author's articles/
  19. admin_user_articles_path(User.last)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement