<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <data noupdate="1">

        <!-- RECORDS FOR RESET VIEWS TESTS -->
        <record id="test_view" model="ir.ui.view">
            <field name="name">Test View</field>
            <field name="type">qweb</field>
            <field name="key">test_website.test_view</field>
            <field name="arch" type="xml">
                <t name="Test View" priority="29" t-name="test_website.test_view">
                    <t t-call="website.layout">
                        <p>Test View</p>
                        <p>placeholder</p>
                    </t>
                </t>
            </field>
        </record>
        <record id="test_page_view" model="ir.ui.view">
            <field name="name">Test Page View</field>
            <field name="type">qweb</field>
            <field name="key">test_website.test_page_view</field>
            <field name="arch" type="xml">
                <t name="Test Page View" priority="29" t-name="test_website.test_page_view">
                    <t t-call="website.layout">
                        <div id="oe_structure_test_website_page" class="oe_structure oe_empty"/>
                        <p>Test Page View</p>
                        <p>placeholder</p>
                    </t>
                </t>
            </field>
        </record>
        <record id="test_page" model="website.page">
            <field name="website_published">True</field>
            <field name="url">/test_page_view</field>
            <field name="view_id" ref="test_page_view"/>
        </record>
        <record id="test_view_to_be_t_called" model="ir.ui.view">
            <field name="name">Test View To Be t-called</field>
            <field name="type">qweb</field>
            <field name="key">test_website.test_view_to_be_t_called</field>
            <field name="arch" type="xml">
                <t name="Test View To Be t-called" priority="29" t-name="test_website.test_view_to_be_t_called">
                    <p>Test View To Be t-called</p>
                    <p>placeholder</p>
                </t>
            </field>
        </record>
        <template id="test_view_child_broken" inherit_id="test_website.test_view" active="False">
            <xpath expr="//p[last()]" position="replace">
                <p>Test View Child Broken</p>
                <p>placeholder</p>
            </xpath>
        </template>

        <!-- RECORDS FOR MODULE OPERATION TESTS -->
        <template id="update_module_base_view">
            <div>I am a base view</div>
        </template>

    </data>
</odoo>
