# coding: utf-8 # frozen_string_literal: true require "spec_helper" module Decidim module Pages module Admin describe PageForm do let(:current_organization) { create(:organization) } let(:body) do { "en" => "
Content
", "ca" => "Contingut
", "es" => "Contenido
" } end let(:commentable) { true } let(:attributes) do { "page" => { "body" => body, "commentable" => commentable } } end subject do described_class.from_params(attributes).with_context( current_organization: current_organization ) end context "when everything is OK" do it { is_expected.to be_valid } end end end end end