This commit is contained in:
albert
2010-10-08 18:42:26 -04:00
parent 6bc469b05d
commit f051e04550
88 changed files with 2865 additions and 699 deletions

View File

@@ -1,7 +1,5 @@
Factory.define(:artist) do |f|
f.name {Faker::Name.first_name}
f.creator {|x| x.association(:user)}
f.updater_id {|x| x.creator_id}
f.updater_ip_addr "127.0.0.1"
f.is_active true
end

View File

@@ -1,5 +1,4 @@
Factory.define(:tag_alias) do |f|
f.creator {|x| x.association(:user)}
f.updater_id {|x| x.creator_id}
f.updater_ip_addr "127.0.0.1"
f.creator_ip_addr "127.0.0.1"
end

View File

@@ -1,5 +1,4 @@
Factory.define(:tag_implication) do |f|
f.creator {|x| x.association(:user)}
f.updater_id {|x| x.creator_id}
f.updater_ip_addr "127.0.0.1"
f.creator_ip_addr "127.0.0.1"
end