diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-25 00:00:28 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-25 00:00:28 -0400 |
commit | ad80c40944743515a45d70014e8d5ffb88cd74fc (patch) | |
tree | 0e97b3d46f3ed3594a1e4074e4a5a06deefcd76d /test/fixtures | |
parent | 5581530930129d7854ed5d99d058939ad9c790c2 (diff) | |
download | thoughts-ad80c40944743515a45d70014e8d5ffb88cd74fc.tar.gz thoughts-ad80c40944743515a45d70014e8d5ffb88cd74fc.tar.bz2 thoughts-ad80c40944743515a45d70014e8d5ffb88cd74fc.zip |
Started designing index page
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/entries.yml | 15 | ||||
-rw-r--r-- | test/fixtures/links.yml | 9 | ||||
-rw-r--r-- | test/fixtures/posts.yml | 9 | ||||
-rw-r--r-- | test/fixtures/records.yml | 7 |
4 files changed, 40 insertions, 0 deletions
diff --git a/test/fixtures/entries.yml b/test/fixtures/entries.yml new file mode 100644 index 0000000..7bb736a --- /dev/null +++ b/test/fixtures/entries.yml | |||
@@ -0,0 +1,15 @@ | |||
1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html | ||
2 | |||
3 | one: | ||
4 | title: MyString | ||
5 | body: MyText | ||
6 | directory: MyString | ||
7 | slug: MyString | ||
8 | type: | ||
9 | |||
10 | two: | ||
11 | title: MyString | ||
12 | body: MyText | ||
13 | directory: MyString | ||
14 | slug: MyString | ||
15 | type: | ||
diff --git a/test/fixtures/links.yml b/test/fixtures/links.yml new file mode 100644 index 0000000..1560785 --- /dev/null +++ b/test/fixtures/links.yml | |||
@@ -0,0 +1,9 @@ | |||
1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html | ||
2 | |||
3 | one: | ||
4 | directory: MyString | ||
5 | slug: MyString | ||
6 | |||
7 | two: | ||
8 | directory: MyString | ||
9 | slug: MyString | ||
diff --git a/test/fixtures/posts.yml b/test/fixtures/posts.yml new file mode 100644 index 0000000..e192dee --- /dev/null +++ b/test/fixtures/posts.yml | |||
@@ -0,0 +1,9 @@ | |||
1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html | ||
2 | |||
3 | one: | ||
4 | title: MyString | ||
5 | body: MyText | ||
6 | |||
7 | two: | ||
8 | title: MyString | ||
9 | body: MyText | ||
diff --git a/test/fixtures/records.yml b/test/fixtures/records.yml new file mode 100644 index 0000000..2e0c8cd --- /dev/null +++ b/test/fixtures/records.yml | |||
@@ -0,0 +1,7 @@ | |||
1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html | ||
2 | |||
3 | one: | ||
4 | description: MyText | ||
5 | |||
6 | two: | ||
7 | description: MyText | ||