You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Leaving this here for anyone that ends up encountering the same test order dependency failures I did.
TL;DR: Add Gretel::Crumbs.reload_if_needed at the beginning of your cell test case that uses breadcrumbs(...) to ensure the "crumbs" are always loaded. (see code at bottom)
I have my application layout broken up into cells, one particular cell view is used to render my breadcrumbs which works fine in production code. We always show the :root crumb on all pages so in my unit tests for the ApplicationLayoutCell I explicitly check for a breadcrumbs HTML node to exist. However, due to some semantics inside Gretel::Renderer#links the breadcrumbs are not loaded because the instance variable @breadcrumb_key inside the Gretel::Renderer is nil.
Because the "crumbs" are not loaded Gretel::Crumbs.crumb_defined?(:root) returns false which causes no "root" link to be added in Gretel::Renderer#links_for_render
Relevant portion of Gretel::Renderer#links_for_render
The contents of the relevant test case in ApplicationLayoutCellTest
test'header'doGretel::Crumbs.reload_if_neededhtml=parse_html(@cell.call(:header))#asserthtml.css('form.site-search-wrapper').present?,'site-wide search form should exist'asserthtml.css('nav.nav').present?,'a nav element should appear in the header'asserthtml.css('.breadcrumbs').present?,'breadcrumbs should get added by the header'end
Leaving this here for anyone that ends up encountering the same test order dependency failures I did.
TL;DR: Add
Gretel::Crumbs.reload_if_needed
at the beginning of your cell test case that usesbreadcrumbs(...)
to ensure the "crumbs" are always loaded. (see code at bottom)I have my application layout broken up into cells, one particular cell view is used to render my breadcrumbs which works fine in production code. We always show the
:root
crumb on all pages so in my unit tests for theApplicationLayoutCell
I explicitly check for a breadcrumbs HTML node to exist. However, due to some semantics insideGretel::Renderer#links
the breadcrumbs are not loaded because the instance variable@breadcrumb_key
inside the Gretel::Renderer is nil.Because the "crumbs" are not loaded
Gretel::Crumbs.crumb_defined?(:root)
returns false which causes no "root" link to be added inGretel::Renderer#links_for_render
Relevant portion of
Gretel::Renderer#links_for_render
The contents of my
ApplicationLayoutCell#breadcrumbs
viewThe contents of the relevant test case in
ApplicationLayoutCellTest
Original issue: #99
The text was updated successfully, but these errors were encountered: