diff options
Diffstat (limited to 'spec/factories/operations.rb')
-rw-r--r-- | spec/factories/operations.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/factories/operations.rb b/spec/factories/operations.rb new file mode 100644 index 0000000..87ee08f --- /dev/null +++ b/spec/factories/operations.rb @@ -0,0 +1,10 @@ +FactoryBot.define do + factory :operation do + name { "MyString" } + organisation + end + + factory :organisation do + name { "Singo Ltd" } + end +end |