diff options
| author | Jesse Morgan <jesse@jesterpm.net> | 2015-02-25 18:47:09 -0800 | 
|---|---|---|
| committer | Jesse Morgan <jesse@jesterpm.net> | 2015-02-25 18:47:09 -0800 | 
| commit | 4e94e31aa0acda54ae962840b57ae42ca6e71185 (patch) | |
| tree | 19fa5fdc8c3bea56fb93463508a81514acd0f604 /test/fixtures | |
| parent | f031bdc3e5214c699123830d8cc9f9309b792a68 (diff) | |
rails generate scaffold Download
Diffstat (limited to 'test/fixtures')
| -rw-r--r-- | test/fixtures/downloads.yml | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/test/fixtures/downloads.yml b/test/fixtures/downloads.yml new file mode 100644 index 0000000..cfcc392 --- /dev/null +++ b/test/fixtures/downloads.yml @@ -0,0 +1,15 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: +  name: MyString +  filename: MyString +  type:  +  description: MyText +  hits: 1 + +two: +  name: MyString +  filename: MyString +  type:  +  description: MyText +  hits: 1 | 
