spec/factories/node.rb in releaf-1.0.8 vs spec/factories/node.rb in releaf-1.0.9
- old
+ new
@@ -23,11 +23,10 @@
sequence(:slug) {|n| "node-#{n}"}
content_type "HomePage"
content_attributes ({ intro_text_html: "some <strong>STRRRONG</strong> text" })
end
-
factory :text_page_node, class: ::Node do
sequence(:name) {|n| "node #{n}"}
sequence(:slug) {|n| "node-#{n}"}
content_type "TextPage"
content_attributes ({ text_html: "some <strong>STRIONG</strong> text" })
@@ -37,7 +36,15 @@
sequence(:name) {|n| "node #{n}"}
sequence(:slug) {|n| "node-#{n}"}
content_type "TextPage"
content_attributes ({ text_html: "some <strong>STRIONG</strong> text" })
end
+
+ factory :banner_page_node, class: ::Node do
+ sequence(:name) {|n| "node #{n}"}
+ sequence(:slug) {|n| "node-#{n}"}
+ content_type "BannerPage"
+ content_attributes ({})
+ end
+
end