diff --git a/test/fixtures/blocks.yml b/test/fixtures/blocks.yml new file mode 100644 index 0000000..ce96174 --- /dev/null +++ b/test/fixtures/blocks.yml @@ -0,0 +1,40 @@ +# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html +#Main Block +one: + id: 1 + box_id: 2 + position: 1 + type: 'MainBlock' + name: 'Main Content' +# Link Blocks +two: + id: 2 + box_id: 1 + position: 2 + type: 'LinkBlock' + name: 'List of Links 1' +three: + id: 3 + box_id: 1 + position: 3 + type: 'LinkBlock' + name: 'List of Link 2' +#List Blocks +four: + id: 4 + box_id: 1 + position: 1 + type: 'ListBlock' + name: 'List of Names 1' +five: + id: 5 + box_id: 3 + position: 1 + type: 'ListBlock' + name: 'List of Names 2' +six: + id: 6 + box_id: 3 + position: 2 + type: 'ListBlock' + name: 'List of Names 3' diff --git a/test/fixtures/boxes.yml b/test/fixtures/boxes.yml new file mode 100644 index 0000000..a0f7c4d --- /dev/null +++ b/test/fixtures/boxes.yml @@ -0,0 +1,19 @@ +# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html +one: + id: 1 + number: 1 + owner_type: 'Profile' + owner_id: 1 + name: 'Box One' +two: + id: 2 + number: 2 + owner_type: 'Profile' + owner_id: 1 + name: 'Box Two' +three: + id: 3 + number: 3 + owner_type: 'Profile' + owner_id: 1 + name: 'Box Three' -- libgit2 0.21.2