diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-08-06 13:55:54 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-08-06 13:55:54 -0500 |
commit | da389a664b87bb131435f2ccb904c0754d5d1655 (patch) | |
tree | 79f6fe6b29f2c361f1c33aa9a811991892b2f0db /spec/fabricators | |
parent | 647ac0f86abb49b97c55229b70e9c06e943adc98 (diff) |
added ability to link accounts with `account:link:token` + `account:link:add` & switch between them with `i:am`/`we:are` bangtags; remove links with `account:link:del:USERNAME` or `account:link:clear`; list links with `account:link:list`
Diffstat (limited to 'spec/fabricators')
-rw-r--r-- | spec/fabricators/linked_user_fabricator.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/fabricators/linked_user_fabricator.rb b/spec/fabricators/linked_user_fabricator.rb new file mode 100644 index 000000000..d9a62f60f --- /dev/null +++ b/spec/fabricators/linked_user_fabricator.rb @@ -0,0 +1,4 @@ +Fabricator(:linked_user) do + user nil + target_user nil +end |