Bump fabrication
This commit is contained in:
parent
9a83345ab7
commit
7b03c436d9
2 changed files with 6 additions and 6 deletions
|
|
@ -52,7 +52,7 @@ GEM
|
||||||
erubi (1.12.0)
|
erubi (1.12.0)
|
||||||
ethon (0.15.0)
|
ethon (0.15.0)
|
||||||
ffi (>= 1.15.0)
|
ffi (>= 1.15.0)
|
||||||
fabrication (2.29.0)
|
fabrication (2.30.0)
|
||||||
faraday (2.7.6)
|
faraday (2.7.6)
|
||||||
faraday-net_http (>= 2.0, < 3.1)
|
faraday-net_http (>= 2.0, < 3.1)
|
||||||
ruby2_keywords (>= 0.0.4)
|
ruby2_keywords (>= 0.0.4)
|
||||||
|
|
|
||||||
|
|
@ -19,26 +19,26 @@ Fabricator(:user, class_name: Person) do
|
||||||
end
|
end
|
||||||
|
|
||||||
Fabricator(:post, class_name: Entity) do
|
Fabricator(:post, class_name: Entity) do
|
||||||
on_init { init_with("Post") }
|
initialize_with { resolved_class.new("Post") }
|
||||||
author { Fabricate(:person) }
|
author { Fabricate(:person) }
|
||||||
end
|
end
|
||||||
|
|
||||||
Fabricator(:comment, class_name: Entity) do
|
Fabricator(:comment, class_name: Entity) do
|
||||||
on_init { init_with("Comment") }
|
initialize_with { resolved_class.new("Comment") }
|
||||||
author { Fabricate(:person) }
|
author { Fabricate(:person) }
|
||||||
end
|
end
|
||||||
|
|
||||||
Fabricator(:poll, class_name: Entity) do
|
Fabricator(:poll, class_name: Entity) do
|
||||||
on_init { init_with("Poll") }
|
initialize_with { resolved_class.new("Poll") }
|
||||||
author { Fabricate(:person) }
|
author { Fabricate(:person) }
|
||||||
end
|
end
|
||||||
|
|
||||||
Fabricator(:event, class_name: Entity) do
|
Fabricator(:event, class_name: Entity) do
|
||||||
on_init { init_with("Event") }
|
initialize_with { resolved_class.new("Event") }
|
||||||
author { Fabricate(:person) }
|
author { Fabricate(:person) }
|
||||||
end
|
end
|
||||||
|
|
||||||
Fabricator(:conversation, class_name: Entity) do
|
Fabricator(:conversation, class_name: Entity) do
|
||||||
on_init { init_with("Conversation") }
|
initialize_with { resolved_class.new("Conversation") }
|
||||||
author { Fabricate(:person) }
|
author { Fabricate(:person) }
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue