finished post unit tests; added pool/tag alias/tag implication stub code

This commit is contained in:
albert
2010-02-11 23:15:31 -05:00
parent bed94a4e30
commit cdc1f653b6
8 changed files with 1254 additions and 291 deletions

5
test/factories/pool.rb Normal file
View File

@@ -0,0 +1,5 @@
Factory.define(:pool) do |f|
f.name {Faker::Name.first_name}
f.creator {|x| x.association(:user)}
f.description {Faker::Lorem.sentences}
end